-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3b37285
commit 8e4c923
Showing
3 changed files
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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)}") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} |