Skip to content

Commit 62aacb6

Browse files
committed
add 2024
1 parent aee3836 commit 62aacb6

File tree

1 file changed

+1
-1
lines changed
  • src/main/kotlin/tr/emreone/kotlin_utils/automation

1 file changed

+1
-1
lines changed

src/main/kotlin/tr/emreone/kotlin_utils/automation/AoCPuzzle.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ data class AoCPuzzle(val day: Int, val year: Int) {
44

55
init {
66
require(day in 1..25) { "Invalid day $day" }
7-
require(year in 2015..2023) { "Invalid year $year" }
7+
require(year in 2015..2024) { "Invalid year $year" }
88
}
99

1010
override fun toString() = "AoC-Puzzle: %02d. Dec. %4d".format(day, year)

0 commit comments

Comments
 (0)