We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 90d0b55 commit 4ed1080Copy full SHA for 4ed1080
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(11);
+const LUT_SIZE: u64 = 2u64.pow(14);
6
7
const LUT: [u64; LUT_SIZE as usize] = const {
8
let mut lut = [0; LUT_SIZE as usize];
0 commit comments