Reduce matrix height to 200
authorGreg Burri <greg.burri@gmail.com>
Wed, 14 Dec 2022 10:30:22 +0000 (11:30 +0100)
committerGreg Burri <greg.burri@gmail.com>
Wed, 14 Dec 2022 10:30:22 +0000 (11:30 +0100)
src/day14.rs

index 3f48e1f..da19259 100644 (file)
@@ -1,7 +1,7 @@
 use itertools::Itertools;
 
-// 1000x1000 matrix.
-const N: usize = 1000;
+// 200x1000 matrix.
+const N: usize = 200;
 const M: usize = 1000;
 
 pub struct Rocks {