aoc-2017 icon indicating copy to clipboard operation
aoc-2017 copied to clipboard

Advent of Code 2017

Results 2 aoc-2017 issues
Sort by recently updated
recently updated
newest added

Should it be: ```kotlin @Test fun part1sample() { assertEquals(0, Day03.part1(1)) assertEquals(3, Day03.part1(12)) assertEquals(2, Day03.part1(23)) assertEquals(31, Day03.part1(1024)) } ``` instead of: ```kotlin @Test fun part1sample() { assertEquals(1, Day03.part1(1)) assertEquals(3, Day03.part1(12)) assertEquals(2,...

Some tests are failing to compile because they import from src/main/kotlin/utils/InputUtils.kt which is not there in the master branch. Removing unused imports fixes those compilation errors.