Skip to content

Commit cb688cc

Browse files
committed
2024/21
1 parent 644f582 commit cb688cc

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

2024/Day21/Solution.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ record struct Vec2(int x, int y);
1313
class Solution : Solver {
1414

1515
public object PartOne(string input) => Solve(input, 2);
16+
1617
public object PartTwo(string input) => Solve(input, 25);
18+
1719
long Solve(string input, int depth) {
1820
var keypad1 = ParseKeypad("789\n456\n123\n 0A");
1921
var keypad2 = ParseKeypad(" ^A\n<v>");

0 commit comments

Comments
 (0)