Skip to content

Commit

Permalink
Setup files for Day 21
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Dec 20, 2024
1 parent 3b37285 commit 8e4c923
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/day21/day21.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package com.tymscar.day21

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

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

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

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

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

0 comments on commit 8e4c923

Please sign in to comment.