We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ca04de commit df9c8a9Copy full SHA for df9c8a9
1 file changed
src/day25.rs
@@ -8,6 +8,11 @@ pub fn part1(s: &str) -> u64 {
8
unsafe { part1_inner(s) }
9
}
10
11
+pub fn part2(_s: &str) -> u64 {
12
+ // To be sure you know...
13
+ 42
14
+}
15
+
16
const DS: usize = 7 * 6 + 1;
17
18
const ALL_BITS: i8 = 0b111;
0 commit comments