Skip to content

Commit 5879ee8

Browse files
committed
Refresh the main Day01.kt file
1 parent 6888a85 commit 5879ee8

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

src/Day01.kt

+5-1
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,14 @@ fun main() {
77
return input.size
88
}
99

10-
// test if implementation meets criteria from the description, like:
10+
// Test if implementation meets criteria from the description, like:
11+
check(part1(listOf("test_input")) == 1)
12+
13+
// Or read a large test input from the `src/Day01_test.txt` file:
1114
val testInput = readInput("Day01_test")
1215
check(part1(testInput) == 1)
1316

17+
// Read the input from the `src/Day01.txt` file.
1418
val input = readInput("Day01")
1519
part1(input).println()
1620
part2(input).println()

src/Utils.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
import java.math.BigInteger
22
import java.security.MessageDigest
33
import kotlin.io.path.Path
4-
import kotlin.io.path.readLines
4+
import kotlin.io.path.readText
55

66
/**
77
* Reads lines from the given input txt file.
88
*/
9-
fun readInput(name: String) = Path("src/$name.txt").readLines()
9+
fun readInput(name: String) = Path("src/$name.txt").readText().trim().lines()
1010

1111
/**
1212
* Converts string to md5 hash.

0 commit comments

Comments
 (0)