Skip to content

Commit b7edee8

Browse files
committed
10
1 parent 2a6d0c8 commit b7edee8

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

2025/Day10/Solution.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,9 @@ public object PartOne(string input) {
2323
return res;
2424
}
2525

26+
// Implements the idea presented by tenthmascot
27+
// https://www.reddit.com/r/adventofcode/comments/1pk87hl/2025_day_10_part_2_bifurcate_your_way_to_victory/
2628
public object PartTwo(string input) {
27-
// Implements the idea presented by tenthmascot
28-
// https://www.reddit.com/r/adventofcode/comments/1pk87hl/2025_day_10_part_2_bifurcate_your_way_to_victory/
29-
3029
var res = 0;
3130
foreach (var p in Parse(input)) {
3231
res += Solve(p.joltage, SinglePresses(p), new Dictionary<string, int>());

0 commit comments

Comments
 (0)