Skip to content

Commit fc85d57

Browse files
committed
Revert example implementation
1 parent c7afbb1 commit fc85d57

File tree

1 file changed

+1
-3
lines changed
  • src/main/kotlin/com/github/kotlinhandson/aoc

1 file changed

+1
-3
lines changed

src/main/kotlin/com/github/kotlinhandson/aoc/Day01.kt

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
package com.github.kotlinhandson.aoc
22

3-
import com.github.kotlinhandson.aoc.utils.ints
4-
53
class Day01 : Day(1) {
64

75
override fun part1(input: String): Int {
8-
return input.ints().sum()
6+
return 0
97
}
108

119
override fun part2(input: String): Int {

0 commit comments

Comments
 (0)