We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 967d6ff commit 22a76f4Copy full SHA for 22a76f4
2024/Day14/Solution.cs
@@ -24,7 +24,7 @@ public object PartOne(string input) {
24
return quadrants[0] * quadrants[1] * quadrants[2] * quadrants[3];
25
}
26
27
- // i figured that the xmas pattern has a long horizontal ### pattern in it
+ // i figured that the xmas tree pattern has a long horizontal ### pattern in it
28
public object PartTwo(string input) =>
29
Simulate(input)
30
.TakeWhile(robots => !Plot(robots).Contains("#################"))
0 commit comments