Skip to content

Commit 7f8d38a

Browse files
committed
2024-01 Scala 2
1 parent 74de26b commit 7f8d38a

File tree

9 files changed

+1040
-43
lines changed

9 files changed

+1040
-43
lines changed

.github/workflows/scala2.yml

+5-6
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,13 @@ jobs:
1818
runs-on: ubuntu-latest
1919

2020
steps:
21-
- uses: actions/checkout@v3
21+
- uses: actions/checkout@v4
2222

23-
- name: Set up JDK 17
24-
uses: actions/setup-java@v3
23+
- uses: graalvm/setup-graalvm@v1
2524
with:
26-
java-version: '17'
27-
distribution: 'temurin'
28-
cache: 'sbt'
25+
java-version: '21'
26+
distribution: 'graalvm'
27+
github-token: ${{ secrets.GITHUB_TOKEN }}
2928

3029
- name: Install Z3
3130
run: sudo apt-get update && sudo apt-get install -y z3

ReadMe.md

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
| Year-Day | Task | Scala | Rust | Others |
88
|----------|:-------------------------------------------------------------------------------|:-----------------------------------------------------------------------:|:----------------------------------------------:|:----------------------------------------------------------------------:|
9+
| 2024-01 | [Historian Hysteria](https://adventofcode.com/2024/day/1) | [Scala](scala2/src/main/scala/jurisk/adventofcode/y2024/Advent01.scala) | | |
910
| 2023-01 | [Trebuchet?!](https://adventofcode.com/2023/day/1) | [Scala](scala2/src/main/scala/jurisk/adventofcode/y2023/Advent01.scala) | [Rust](rust/y2023/src/bin/solution_2023_01.rs) | |
1011
| 2023-02 | [Cube Conundrum](https://adventofcode.com/2023/day/2) | [Scala](scala2/src/main/scala/jurisk/adventofcode/y2023/Advent02.scala) | | |
1112
| 2023-03 | [Gear Ratios](https://adventofcode.com/2023/day/3) | [Scala](scala2/src/main/scala/jurisk/adventofcode/y2023/Advent03.scala) | | |
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
3 4
2+
4 3
3+
2 5
4+
1 3
5+
3 9
6+
3 3

0 commit comments

Comments
 (0)