You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -45,7 +45,7 @@ After you create a new project based on the current template repository using th
45
45
└── src
46
46
├── Day01.kt An empty implementation for the first AoC day
47
47
├── Day01.txt An empty file for the Day 01 input data
48
-
├── Day01_test.txt An optional Day 01 test input data used for assertion
48
+
├── Day01_test.txt An optional Day 01 test input data used for checks
49
49
└── Utils.kt A set of utility methods shared across your days
50
50
```
51
51
@@ -68,14 +68,14 @@ fun main() {
68
68
The [`Utils.kt`][file:utils] file also contains the `String.md5()` method for generating MD5 has out of the given string and expects more helper functions for the sake of the [KISS principle][kiss].
69
69
70
70
Each puzzle describes some test conditions, a small portion of the information that helps check if the produced value for the given test input is valid.
71
-
To handle that case, you can put such an input into a separated file and perform a standard assertion against the output, like:
71
+
To handle that case, you can put such an input into a separated file and perform a check against the output, like:
0 commit comments