Skip to content

Commit f973632

Browse files
committed
Finished day05
1 parent 7f5e51c commit f973632

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ To run all solutions, simply run `./gradlew run`. If you want to run the solutio
2626
| 2 |||
2727
| 3 |||
2828
| 4 |||
29-
| 5 | | |
29+
| 5 | | |
3030
| 6 |||
3131
| 7 |||
3232
| 8 |||
@@ -47,9 +47,9 @@ To run all solutions, simply run `./gradlew run`. If you want to run the solutio
4747
| 23 |||
4848
| 24 |||
4949
| 25 |||
50-
| **SUM** | **4** | **4** |
50+
| **SUM** | **5** | **5** |
5151

52-
Total: 8
52+
Total: 10
5353

5454
## Prior Years contribution:
5555
| Year | Language(s) | Total Stars | Link to repository |

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44

55
// project meta data
66
group 'de.havox_design.aoc2023'
7-
version '0.4.4'
7+
version '0.5.0'
88

99
// Switch to gradle "all" distribution.
1010
wrapper {

day05/src/main/kotlin/de/havox_design/aoc2023/day05/MainClass.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ class MainClass {
77
val filename = "day05.txt"
88

99
println("Solution part 1: ${Day05(filename).solvePart1()}")
10-
println("Calculation of solution 2 may take some minutes...") // 9min 15sec on Ryzen 5700G
10+
println("Calculation of solution 2 may take some minutes...") // 9min 15sec on Ryzen 7 5700G
1111
println("Solution part 2: ${Day05(filename).solvePart2()}")
1212
}
1313
}

0 commit comments

Comments
 (0)