Skip to content

Commit 119965e

Browse files
committed
Use lut size 12
1 parent 9053cd8 commit 119965e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/day11.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use fxhash::FxHashMap as HashMap;
22

33
use aoc_runner_derive::aoc;
44

5-
const LUT_SIZE: u64 = 2u64.pow(13);
5+
const LUT_SIZE: u64 = 2u64.pow(12);
66

77
const LUT: [u64; LUT_SIZE as usize] = const {
88
let mut lut = [0; LUT_SIZE as usize];

0 commit comments

Comments
 (0)