We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38f087d commit e5412fdCopy full SHA for e5412fd
aoclp_solutions/src/y2025/day_06.rs
@@ -13,7 +13,7 @@ pub fn part_1() -> usize {
13
}
14
15
pub fn part_2() -> usize {
16
- cephalopod_problems()
+ cephaloproblems()
17
.into_iter()
18
.map(Problem::answer.without_ref())
19
.sum()
@@ -92,7 +92,7 @@ fn problems() -> Vec<Problem> {
92
.collect_vec()
93
94
95
-fn cephalopod_problems() -> Vec<Problem> {
+fn cephaloproblems() -> Vec<Problem> {
96
let input = input();
97
let operators = parse_operators(&input);
98
let mut operands = Vec::new();
0 commit comments