Skip to content

Commit

Permalink
[2024/6] Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
pfolta committed Dec 6, 2024
1 parent 63d8682 commit 039a063
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/kotlin/adventofcode/year2024/Day06GuardGallivant.kt
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ class Day06GuardGallivant(customInput: PuzzleInput? = null) : Puzzle(customInput
UP(0 to -1),
RIGHT(1 to 0),
DOWN(0 to 1),
LEFT(-1 to 0);
LEFT(-1 to 0),
;

fun turnRight() =
when (this) {
Expand Down

0 comments on commit 039a063

Please sign in to comment.