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 644f582 commit cb688ccCopy full SHA for cb688cc
2024/Day21/Solution.cs
@@ -13,7 +13,9 @@ record struct Vec2(int x, int y);
13
class Solution : Solver {
14
15
public object PartOne(string input) => Solve(input, 2);
16
+
17
public object PartTwo(string input) => Solve(input, 25);
18
19
long Solve(string input, int depth) {
20
var keypad1 = ParseKeypad("789\n456\n123\n 0A");
21
var keypad2 = ParseKeypad(" ^A\n<v>");
0 commit comments