projects
/
advent_of_code_2022.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c7c7ac2
)
Reduce matrix height to 200
author
Greg Burri
<greg.burri@gmail.com>
Wed, 14 Dec 2022 10:30:22 +0000
(11:30 +0100)
committer
Greg Burri
<greg.burri@gmail.com>
Wed, 14 Dec 2022 10:30:22 +0000
(11:30 +0100)
src/day14.rs
patch
|
blob
|
history
diff --git
a/src/day14.rs
b/src/day14.rs
index
3f48e1f
..
da19259
100644
(file)
--- a/
src/day14.rs
+++ b/
src/day14.rs
@@
-1,7
+1,7
@@
use itertools::Itertools;
-//
10
00x1000 matrix.
-const N: usize =
10
00;
+//
2
00x1000 matrix.
+const N: usize =
2
00;
const M: usize = 1000;
pub struct Rocks {