From: Greg Burri Date: Wed, 14 Dec 2022 10:30:22 +0000 (+0100) Subject: Reduce matrix height to 200 X-Git-Url: http://git.euphorik.ch/index.cgi?a=commitdiff_plain;h=1d6436b259e98e41c2afc3f02062e2306f09830c;p=advent_of_code_2022.git Reduce matrix height to 200 --- diff --git a/src/day14.rs b/src/day14.rs index 3f48e1f..da19259 100644 --- a/src/day14.rs +++ b/src/day14.rs @@ -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 {