We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 119965e commit 90d0b55Copy full SHA for 90d0b55
src/day11.rs
@@ -2,7 +2,7 @@ use fxhash::FxHashMap as HashMap;
2
3
use aoc_runner_derive::aoc;
4
5
-const LUT_SIZE: u64 = 2u64.pow(12);
+const LUT_SIZE: u64 = 2u64.pow(11);
6
7
const LUT: [u64; LUT_SIZE as usize] = const {
8
let mut lut = [0; LUT_SIZE as usize];
0 commit comments