Skip to content

Commit

Permalink
Setup files for Day 20
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Dec 19, 2024
1 parent 3fabe07 commit 0d7141d
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 0 deletions.
13 changes: 13 additions & 0 deletions 2024/kotlin/src/main/kotlin/com/tymscar/day20/day20.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package com.tymscar.day20

import java.io.File
import com.tymscar.day20.part1.solve as part1
import com.tymscar.day20.part2.solve as part2

fun solve() {
var input: String = File("src/main/kotlin/com/tymscar/day20/input.txt").readText()

println("Day 20: ")
println("Part 1: ${part1(input)}")
println("Part 2: ${part2(input)}")
}
5 changes: 5 additions & 0 deletions 2024/kotlin/src/main/kotlin/com/tymscar/day20/part1/part1.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
package com.tymscar.day20.part1

fun solve(input: String): String {
return input
}
5 changes: 5 additions & 0 deletions 2024/kotlin/src/main/kotlin/com/tymscar/day20/part2/part2.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
package com.tymscar.day20.part2

fun solve(input: String): String {
return input
}

0 comments on commit 0d7141d

Please sign in to comment.