You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/2023/puzzles/day17.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -196,7 +196,7 @@ Part 2 is similar, but our streak limit increases to 10.
196
196
Furthermore, while the streak is less than four, only a forward movement is possible:
197
197
198
198
```scala
199
-
//inside case class State:
199
+
//Inside case class State:
200
200
defnextStates2(usingGrid):List[State] =
201
201
if streak <4thenList(straight)
202
202
elseList(straight, turnLeft, turnRight).filter: s =>
@@ -323,7 +323,7 @@ def search(next: StateTransform)(using Grid): Int =
323
323
324
324
## Solutions from the community
325
325
326
-
-[Solution](https://github.com/stewSquared/advent-of-code/blob/master/src/main/scala/2021/Day17.worksheet.sc) by [stewSquared](https://github.com/stewSquared)
326
+
-[Solution](https://github.com/stewSquared/advent-of-code/blob/master/src/main/scala/2023/Day17.worksheet.sc) by [stewSquared](https://github.com/stewSquared)
327
327
-[Solution](https://github.com/merlinorg/aoc2023/blob/main/src/main/scala/Day17.scala) by [merlin](https://github.com/merlinorg/)
328
328
-[Solution](https://github.com/xRuiAlves/advent-of-code-2023/blob/main/Day17.scala) by [Rui Alves](https://github.com/xRuiAlves/)
0 commit comments