File tree 2 files changed +7
-3
lines changed
2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -7,10 +7,14 @@ fun main() {
7
7
return input.size
8
8
}
9
9
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:
11
14
val testInput = readInput(" Day01_test" )
12
15
check(part1(testInput) == 1 )
13
16
17
+ // Read the input from the `src/Day01.txt` file.
14
18
val input = readInput(" Day01" )
15
19
part1(input).println ()
16
20
part2(input).println ()
Original file line number Diff line number Diff line change 1
1
import java.math.BigInteger
2
2
import java.security.MessageDigest
3
3
import kotlin.io.path.Path
4
- import kotlin.io.path.readLines
4
+ import kotlin.io.path.readText
5
5
6
6
/* *
7
7
* Reads lines from the given input txt file.
8
8
*/
9
- fun readInput (name : String ) = Path (" src/$name .txt" ).readLines ()
9
+ fun readInput (name : String ) = Path (" src/$name .txt" ).readText().trim().lines ()
10
10
11
11
/* *
12
12
* Converts string to md5 hash.
You can’t perform that action at this time.
0 commit comments