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 aee3836 commit 62aacb6Copy full SHA for 62aacb6
src/main/kotlin/tr/emreone/kotlin_utils/automation/AoCPuzzle.kt
@@ -4,7 +4,7 @@ data class AoCPuzzle(val day: Int, val year: Int) {
4
5
init {
6
require(day in 1..25) { "Invalid day $day" }
7
- require(year in 2015..2023) { "Invalid year $year" }
+ require(year in 2015..2024) { "Invalid year $year" }
8
}
9
10
override fun toString() = "AoC-Puzzle: %02d. Dec. %4d".format(day, year)
0 commit comments