Skip to content

Commit aac6d54

Browse files
authored
Add my community solutions for 2024. (#820)
1 parent eb031b2 commit aac6d54

25 files changed

+25
-0
lines changed

docs/2024/puzzles/day01.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ end part2
8888
- [Solution](https://github.com/profunctor-optics/advent-2024/blob/main/src/main/scala/advent2024/Day01.scala) by [Georgi Krastev](https://github.com/joroKr21)
8989
- [Solution](https://github.com/jportway/advent2024/blob/master/src/main/scala/Day1.scala) by [Joshua Portway](https://github.com/jportway)
9090
- [Solution](https://github.com/TheDrawingCoder-Gamer/adventofcode2024/blob/e163baeaedcd90732b5e19f578a2faadeb1ef872/src/main/scala/day1.sc) by [Bulby](https://github.com/TheDrawingCoder-Gamer)
91+
- [Solution](https://github.com/AvaPL/Advent-of-Code-2024/tree/main/src/main/scala/day1) by [Paweł Cembaluk](https://github.com/AvaPL)
9192

9293
Share your solution to the Scala community by editing this page.
9394
You can even write the whole article! [See here for the expected format](https://github.com/scalacenter/scala-advent-of-code/discussions/424)

docs/2024/puzzles/day02.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ def part2(input: String): Int = parse(input).count(_.isDampenedSafe)
107107
- [Solution](https://github.com/profunctor-optics/advent-2024/blob/main/src/main/scala/advent2024/Day02.scala) by [Georgi Krastev](https://github.com/joroKr21)
108108
- [Solution](https://github.com/jportway/advent2024/blob/master/src/main/scala/Day2.scala) by [Joshua Portway](https://github.com/jportway)
109109
- [Solution](https://github.com/TheDrawingCoder-Gamer/adventofcode2024/blob/e163baeaedcd90732b5e19f578a2faadeb1ef872/src/main/scala/day2.sc) by [Bulby](https://github.com/TheDrawingCoder-Gamer)
110+
- [Solution](https://github.com/AvaPL/Advent-of-Code-2024/tree/main/src/main/scala/day2) by [Paweł Cembaluk](https://github.com/AvaPL)
110111

111112
Share your solution to the Scala community by editing this page.
112113
You can even write the whole article! [See here for the expected format](https://github.com/scalacenter/scala-advent-of-code/discussions/424)

docs/2024/puzzles/day03.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,7 @@ object DayThree:
156156
- [Solution](https://github.com/profunctor-optics/advent-2024/blob/main/src/main/scala/advent2024/Day03.scala) by [Georgi Krastev](https://github.com/joroKr21)
157157
- [Solution](https://github.com/jportway/advent2024/blob/master/src/main/scala/Day3.scala) by [Joshua Portway](https://github.com/jportway)
158158
- [Solution](https://github.com/TheDrawingCoder-Gamer/adventofcode2024/blob/e163baeaedcd90732b5e19f578a2faadeb1ef872/src/main/scala/day3.sc) by [Bulby](https://github.com/TheDrawingCoder-Gamer)
159+
- [Solution](https://github.com/AvaPL/Advent-of-Code-2024/tree/main/src/main/scala/day3) by [Paweł Cembaluk](https://github.com/AvaPL)
159160

160161
Share your solution to the Scala community by editing this page.
161162
You can even write the whole article! [See here for the expected format](https://github.com/scalacenter/scala-advent-of-code/discussions/424)

docs/2024/puzzles/day04.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -303,6 +303,7 @@ def totalMAS(grid: Grid): Int =
303303
- [Solution](https://github.com/profunctor-optics/advent-2024/blob/main/src/main/scala/advent2024/Day04.scala) by [Georgi Krastev](https://github.com/joroKr21)
304304
- [Solution](https://github.com/jportway/advent2024/blob/master/src/main/scala/Day4.scala) by [Joshua Portway](https://github.com/jportway)
305305
- [Solution](https://github.com/TheDrawingCoder-Gamer/adventofcode2024/blob/e163baeaedcd90732b5e19f578a2faadeb1ef872/src/main/scala/day4.sc) by [Bulby](https://github.com/TheDrawingCoder-Gamer)
306+
- [Solution](https://github.com/AvaPL/Advent-of-Code-2024/tree/main/src/main/scala/day4) by [Paweł Cembaluk](https://github.com/AvaPL)
306307

307308
Share your solution to the Scala community by editing this page.
308309
You can even write the whole article! [See here for the expected format](https://github.com/scalacenter/scala-advent-of-code/discussions/424)

docs/2024/puzzles/day05.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,7 @@ def part2(input: String) =
214214
- [Solution](https://github.com/profunctor-optics/advent-2024/blob/main/src/main/scala/advent2024/Day05.scala) by [Georgi Krastev](https://github.com/joroKr21)
215215
- [Solution](https://github.com/jportway/advent2024/blob/master/src/main/scala/Day5.scala) by [Joshua Portway](https://github.com/jportway)
216216
- [Solution](https://github.com/TheDrawingCoder-Gamer/adventofcode2024/blob/e163baeaedcd90732b5e19f578a2faadeb1ef872/src/main/scala/day5.sc) by [Bulby](https://github.com/TheDrawingCoder-Gamer)
217+
- [Solution](https://github.com/AvaPL/Advent-of-Code-2024/tree/main/src/main/scala/day5) by [Paweł Cembaluk](https://github.com/AvaPL)
217218

218219
Share your solution to the Scala community by editing this page.
219220
You can even write the whole article! [See here for the expected format](https://github.com/scalacenter/scala-advent-of-code/discussions/424)

docs/2024/puzzles/day06.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,7 @@ https://adventofcode.com/2024/day/6
229229
- [Solution](https://github.com/jportway/advent2024/blob/master/src/main/scala/Day6.scala) by [Joshua Portway](https://github.com/jportway)
230230
- [Solution](https://github.com/Philippus/adventofcode/blob/main/src/main/scala/adventofcode2024/Day06.scala) by [Philippus Baalman](https://github.com/philippus)
231231
- [Solution](https://github.com/TheDrawingCoder-Gamer/adventofcode2024/blob/e163baeaedcd90732b5e19f578a2faadeb1ef872/src/main/scala/day6.sc) by [Bulby](https://github.com/TheDrawingCoder-Gamer)
232+
- [Solution](https://github.com/AvaPL/Advent-of-Code-2024/tree/main/src/main/scala/day6) by [Paweł Cembaluk](https://github.com/AvaPL)
232233

233234
Share your solution to the Scala community by editing this page.
234235
You can even write the whole article! [See here for the expected format](https://github.com/scalacenter/scala-advent-of-code/discussions/424)

docs/2024/puzzles/day07.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ end part2
108108
- [Solution](https://github.com/jportway/advent2024/blob/master/src/main/scala/Day7.scala) by [Joshua Portway](https://github.com/jportway)
109109
- [Solution](https://github.com/TheDrawingCoder-Gamer/adventofcode2024/blob/e163baeaedcd90732b5e19f578a2faadeb1ef872/src/main/scala/day7.sc) by [Bulby](https://github.com/TheDrawingCoder-Gamer)
110110
- [Solution](https://github.com/itsjoeoui/aoc2024/blob/main/src/day07.scala) by [itsjoeoui](https://github.com/itsjoeoui)
111+
- [Solution](https://github.com/AvaPL/Advent-of-Code-2024/tree/main/src/main/scala/day7) by [Paweł Cembaluk](https://github.com/AvaPL)
111112

112113
Share your solution to the Scala community by editing this page.
113114
You can even write the whole article! [See here for the expected format](https://github.com/scalacenter/scala-advent-of-code/discussions/424)

docs/2024/puzzles/day08.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,7 @@ end part2
147147
- [Solution](https://github.com/Philippus/adventofcode/blob/main/src/main/scala/adventofcode2024/Day08.scala) by [Philippus Baalman](https://github.com/philippus)
148148
- [Solution](https://github.com/TheDrawingCoder-Gamer/adventofcode2024/blob/e163baeaedcd90732b5e19f578a2faadeb1ef872/src/main/scala/day8.sc) by [Bulby](https://github.com/TheDrawingCoder-Gamer)
149149
- [Solution](https://github.com/itsjoeoui/aoc2024/blob/main/src/day08.scala) by [itsjoeoui](https://github.com/itsjoeoui)
150+
- [Solution](https://github.com/AvaPL/Advent-of-Code-2024/tree/main/src/main/scala/day8) by [Paweł Cembaluk](https://github.com/AvaPL)
150151

151152
Share your solution to the Scala community by editing this page.
152153
You can even write the whole article! [See here for the expected format](https://github.com/scalacenter/scala-advent-of-code/discussions/424)

docs/2024/puzzles/day09.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -322,5 +322,6 @@ def part2(input: String): Long =
322322
- [Solution](https://github.com/rolandtritsch/scala3-aoc-2024/blob/trunk/src/aoc2024/Day09.scala) by [Roland Tritsch](https://github.com/rolandtritsch)
323323
- [Solution](https://github.com/TheDrawingCoder-Gamer/adventofcode2024/blob/e163baeaedcd90732b5e19f578a2faadeb1ef872/src/main/scala/day9.sc) by [Bulby](https://github.com/TheDrawingCoder-Gamer)
324324
- [Solution](https://github.com/Philippus/adventofcode/blob/main/src/main/scala/adventofcode2024/Day09.scala) by [Philippus Baalman](https://github.com/philippus)
325+
- [Solution](https://github.com/AvaPL/Advent-of-Code-2024/tree/main/src/main/scala/day9) by [Paweł Cembaluk](https://github.com/AvaPL)
325326

326327
Share your solution to the Scala community by editing this page.

docs/2024/puzzles/day10.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,7 @@ throw away duplicate counts.
159159
- [Solution](https://github.com/scarf005/aoc-scala/blob/main/2024/day10.scala) by [scarf](https://github.com/scarf005)
160160
- [Solution](https://github.com/TheDrawingCoder-Gamer/adventofcode2024/blob/e163baeaedcd90732b5e19f578a2faadeb1ef872/src/main/scala/day10.sc) by [Bulby](https://github.com/TheDrawingCoder-Gamer)
161161
- [Solution](https://github.com/Philippus/adventofcode/blob/main/src/main/scala/adventofcode2024/Day10.scala) by [Philippus Baalman](https://github.com/philippus)
162+
- [Solution](https://github.com/AvaPL/Advent-of-Code-2024/tree/main/src/main/scala/day10) by [Paweł Cembaluk](https://github.com/AvaPL)
162163

163164
Share your solution to the Scala community by editing this page.
164165
You can even write the whole article! [See here for the expected format](https://github.com/scalacenter/scala-advent-of-code/discussions/424)

docs/2024/puzzles/day11.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -255,6 +255,7 @@ extension (stones: Map[Long, Long])
255255
- [Solution](https://github.com/aamiguet/advent-2024/blob/main/src/main/scala/ch/aamiguet/advent2024/Day11.scala) by [Antoine Amiguet](https://github.com/aamiguet)
256256
- [Solution](https://github.com/Philippus/adventofcode/blob/main/src/main/scala/adventofcode2024/Day11.scala) by [Philippus Baalman](https://github.com/philippus)
257257
- [Solution](https://github.com/TheDrawingCoder-Gamer/adventofcode2024/blob/e163baeaedcd90732b5e19f578a2faadeb1ef872/src/main/scala/day11.sc) by [Bulby](https://github.com/TheDrawingCoder-Gamer)
258+
- [Solution](https://github.com/AvaPL/Advent-of-Code-2024/tree/main/src/main/scala/day11) by [Paweł Cembaluk](https://github.com/AvaPL)
258259

259260
Share your solution to the Scala community by editing this page.
260261
You can even write the whole article! [See here for the expected format](https://github.com/scalacenter/scala-advent-of-code/discussions/424)

docs/2024/puzzles/day12.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -380,6 +380,7 @@ def part2(input: String): Int = {
380380
- [Solution](https://github.com/scarf005/aoc-scala/blob/main/2024/day12.scala) by [scarf](https://github.com/scarf005)
381381
- [Solution](https://github.com/AlexMckey/AoC2024_Scala/blob/master/src/year2024/day12.scala) by [Alex Mc'key](https://github.com/AlexMckey)
382382
- [Solution](https://github.com/jportway/advent2024/blob/master/src/main/scala/Day12.scala) by [Joshua Portway](https://github.com/jportway)
383+
- [Solution](https://github.com/AvaPL/Advent-of-Code-2024/tree/main/src/main/scala/day12) by [Paweł Cembaluk](https://github.com/AvaPL)
383384

384385
Share your solution to the Scala community by editing this page.
385386
You can even write the whole article! [See here for the expected format](https://github.com/scalacenter/scala-advent-of-code/discussions/424)

docs/2024/puzzles/day13.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,7 @@ def part2(input: String): Long =
227227
- [Solution](https://github.com/jnclt/adventofcode2024/blob/main/day13/claw-contraption.sc) by [jnclt](https://github.com/jnclt)
228228
- [Solution](https://github.com/TheDrawingCoder-Gamer/adventofcode2024/blob/e163baeaedcd90732b5e19f578a2faadeb1ef872/src/main/scala/Day13.scala) by [Bulby](https://github.com/TheDrawingCoder-Gamer)
229229
- [Solution](https://github.com/jportway/advent2024/blob/master/src/main/scala/Day13.scala) by [Joshua Portway](https://github.com/jportway)
230+
- [Solution](https://github.com/AvaPL/Advent-of-Code-2024/tree/main/src/main/scala/day13) by [Paweł Cembaluk](https://github.com/AvaPL)
230231

231232
Share your solution to the Scala community by editing this page.
232233
You can even write the whole article! [See here for the expected format](https://github.com/scalacenter/scala-advent-of-code/discussions/424)

docs/2024/puzzles/day14.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ https://adventofcode.com/2024/day/14
1818
- [Solution](https://github.com/Philippus/adventofcode/blob/main/src/main/scala/adventofcode2024/Day14.scala) by [Philippus Baalman](https://github.com/philippus)
1919
- [Writeup](https://thedrawingcoder-gamer.github.io/aoc-writeups/2024/day14.html) by [Bulby](https://github.com/TheDrawingCoder-Gamer)
2020
- [Solution](https://github.com/jportway/advent2024/blob/master/src/main/scala/Day14.scala) by [Joshua Portway](https://github.com/jportway)
21+
- [Solution](https://github.com/AvaPL/Advent-of-Code-2024/tree/main/src/main/scala/day14) by [Paweł Cembaluk](https://github.com/AvaPL)
2122

2223
Share your solution to the Scala community by editing this page.
2324
You can even write the whole article! [See here for the expected format](https://github.com/scalacenter/scala-advent-of-code/discussions/424)

docs/2024/puzzles/day15.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -405,6 +405,7 @@ object Day15:
405405
- [Writeup](https://thedrawingcoder-gamer.github.io/aoc-writeups/2024/day15.html) by [Bulby](https://github.com/TheDrawingCoder-Gamer)
406406
- [Solution](https://github.com/jportway/advent2024/blob/master/src/main/scala/Day15.scala) by [Joshua Portway](https://github.com/jportway)
407407
- [Solution](https://github.com/Philippus/adventofcode/blob/main/src/main/scala/adventofcode2024/Day15.scala) by [Philippus Baalman](https://github.com/philippus)
408+
- [Solution](https://github.com/AvaPL/Advent-of-Code-2024/tree/main/src/main/scala/day15) by [Paweł Cembaluk](https://github.com/AvaPL)
408409

409410
Share your solution to the Scala community by editing this page.
410411
You can even write the whole article! [See here for the expected format](https://github.com/scalacenter/scala-advent-of-code/discussions/424)

docs/2024/puzzles/day16.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -473,6 +473,7 @@ given Ordering[Reindeer] = Ordering.by(-_.score)
473473
- [Solution](https://github.com/rmarbeck/advent2024/blob/main/day16/src/main/scala/Solution.scala) by [Raphaël Marbeck](https://github.com/rmarbeck)
474474
- [Solution](https://github.com/TheDrawingCoder-Gamer/adventofcode2024/blob/e163baeaedcd90732b5e19f578a2faadeb1ef872/src/main/scala/Day16.scala) by [Bulby](https://github.com/TheDrawingCoder-Gamer)
475475
- [Solution](https://github.com/jportway/advent2024/blob/master/src/main/scala/Day16.scala) by [Joshua Portway](https://github.com/jportway)
476+
- [Solution](https://github.com/AvaPL/Advent-of-Code-2024/tree/main/src/main/scala/day16) by [Paweł Cembaluk](https://github.com/AvaPL)
476477

477478
Share your solution to the Scala community by editing this page.
478479
You can even write the whole article! [See here for the expected format](https://github.com/scalacenter/scala-advent-of-code/discussions/424)

docs/2024/puzzles/day17.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -278,6 +278,7 @@ object Day17:
278278
- [Solution](https://github.com/jportway/advent2024/blob/master/src/main/scala/Day17.scala) by [Joshua Portway](https://github.com/jportway)
279279
- [Solution](https://github.com/nikiforo/aoc24/blob/main/src/main/scala/io/github/nikiforo/aoc24/D17T2.scala) by [Artem Nikiforov](https://github.com/nikiforo)
280280
- [Writeup](https://thedrawingcoder-gamer.github.io/aoc-writeups/2024/day17.html) by [Bulby](https://github.com/TheDrawingCoder-Gamer)
281+
- [Solution](https://github.com/AvaPL/Advent-of-Code-2024/tree/main/src/main/scala/day17) by [Paweł Cembaluk](https://github.com/AvaPL)
281282

282283

283284
Share your solution to the Scala community by editing this page.

docs/2024/puzzles/day18.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,7 @@ def part2(str: String): Vec2i =
178178
- [Solution](https://github.com/AlexMckey/AoC2024_Scala/blob/master/src/year2024/day18.scala) by [Alex Mc'key](https://github.com/AlexMckey)
179179
- [Solution](https://github.com/jnclt/adventofcode2024/blob/main/day18/ram-run.sc) by [jnclt](https://github.com/jnclt)
180180
- [Solution](https://github.com/aamiguet/advent-2024/blob/main/src/main/scala/ch/aamiguet/advent2024/Day18.scala) by [Antoine Amiguet](https://github.com/aamiguet)
181+
- [Solution](https://github.com/AvaPL/Advent-of-Code-2024/tree/main/src/main/scala/day18) by [Paweł Cembaluk](https://github.com/AvaPL)
181182

182183
Share your solution to the Scala community by editing this page.
183184
You can even write the whole article! [See here for the expected format](https://github.com/scalacenter/scala-advent-of-code/discussions/424)

docs/2024/puzzles/day19.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ https://adventofcode.com/2024/day/19
1515
- [Solution](https://github.com/aamiguet/advent-2024/blob/main/src/main/scala/ch/aamiguet/advent2024/Day19.scala) by [Antoine Amiguet](https://github.com/aamiguet)
1616
- [Writeup](https://thedrawingcoder-gamer.github.io/aoc-writeups/2024/day19.html) by [Bulby](https://github.com/TheDrawingCoder-Gamer)
1717
- [Solution](https://github.com/jnclt/adventofcode2024/blob/main/day19/linen-layout.sc) by [jnclt](https://github.com/jnclt)
18+
- [Solution](https://github.com/AvaPL/Advent-of-Code-2024/tree/main/src/main/scala/day19) by [Paweł Cembaluk](https://github.com/AvaPL)
1819

1920
Share your solution to the Scala community by editing this page.
2021
You can even write the whole article! [See here for the expected format](https://github.com/scalacenter/scala-advent-of-code/discussions/424)

docs/2024/puzzles/day20.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ https://adventofcode.com/2024/day/20
1313
- [Solution](https://github.com/aamiguet/advent-2024/blob/main/src/main/scala/ch/aamiguet/advent2024/Day20.scala) by [Antoine Amiguet](https://github.com/aamiguet)
1414
- [Solution](https://github.com/merlinorg/aoc2024/blob/main/src/main/scala/Day20.scala) by [merlinorg](https://github.com/merlinorg)
1515
- [Writeup](https://thedrawingcoder-gamer.github.io/aoc-writeups/2024/day20.html) by [Bulby](https://github.com/TheDrawingCoder-Gamer)
16+
- [Solution](https://github.com/AvaPL/Advent-of-Code-2024/tree/main/src/main/scala/day20) by [Paweł Cembaluk](https://github.com/AvaPL)
1617

1718
Share your solution to the Scala community by editing this page.
1819
You can even write the whole article! [See here for the expected format](https://github.com/scalacenter/scala-advent-of-code/discussions/424)

docs/2024/puzzles/day21.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -303,6 +303,7 @@ Thanks to the [Scala.js](https://www.scala-js.org/) build, you can also experime
303303
## Solutions from the community
304304

305305
- [Solution](https://github.com/merlinorg/aoc2024/blob/main/src/main/scala/Day21.scala) by [merlinorg](https://github.com/merlinorg)
306+
- [Solution](https://github.com/AvaPL/Advent-of-Code-2024/tree/main/src/main/scala/day21) by [Paweł Cembaluk](https://github.com/AvaPL)
306307

307308
Share your solution to the Scala community by editing this page.
308309
You can even write the whole article! [See here for the expected format](https://github.com/scalacenter/scala-advent-of-code/discussions/424)

docs/2024/puzzles/day22.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -333,6 +333,7 @@ extension [A](self: Iterator[A])
333333
- [Solution](https://github.com/merlinorg/aoc2024/blob/main/src/main/scala/Day22.scala) by [merlinorg](https://github.com/merlinorg)
334334
- [Solution](https://github.com/aamiguet/advent-2024/blob/main/src/main/scala/ch/aamiguet/advent2024/Day22.scala) by [Antoine Amiguet](https://github.com/aamiguet)
335335
- [Writeup](https://thedrawingcoder-gamer.github.io/aoc-writeups/2024/day22.html) by [Bulby](https://github.com/TheDrawingCoder-Gamer)
336+
- [Solution](https://github.com/AvaPL/Advent-of-Code-2024/tree/main/src/main/scala/day22) by [Paweł Cembaluk](https://github.com/AvaPL)
336337

337338
Share your solution to the Scala community by editing this page.
338339
You can even write the whole article! [See here for the expected format](https://github.com/scalacenter/scala-advent-of-code/discussions/424)

docs/2024/puzzles/day23.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ https://adventofcode.com/2024/day/23
1313
- [Solution](https://github.com/rmarbeck/advent2024/blob/main/day23/src/main/scala/Solution.scala) by [Raphaël Marbeck](https://github.com/rmarbeck)
1414
- [Writeup](https://thedrawingcoder-gamer.github.io/aoc-writeups/2024/day23.html) by [Bulby](https://github.com/TheDrawingCoder-Gamer)
1515
- [Solution](https://github.com/Philippus/adventofcode/blob/main/src/main/scala/adventofcode2024/Day23.scala) by [Philippus Baalman](https://github.com/philippus)
16+
- [Solution](https://github.com/AvaPL/Advent-of-Code-2024/tree/main/src/main/scala/day23) by [Paweł Cembaluk](https://github.com/AvaPL)
1617

1718
Share your solution to the Scala community by editing this page.
1819
You can even write the whole article! [See here for the expected format](https://github.com/scalacenter/scala-advent-of-code/discussions/424)

docs/2024/puzzles/day24.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ https://adventofcode.com/2024/day/24
1111
- [Solution](https://github.com/merlinorg/aoc2024/blob/main/src/main/scala/Day24.scala) by [merlinorg](https://github.com/merlinorg)
1212
- [Solution](https://github.com/aamiguet/advent-2024/blob/main/src/main/scala/ch/aamiguet/advent2024/Day24.scala) by [Antoine Amiguet](https://github.com/aamiguet)
1313
- [Solution](https://github.com/rmarbeck/advent2024/blob/main/day24/src/main/scala/Solution.scala) by [Raphaël Marbeck](https://github.com/rmarbeck)
14+
- [Solution](https://github.com/AvaPL/Advent-of-Code-2024/tree/main/src/main/scala/day24) by [Paweł Cembaluk](https://github.com/AvaPL)
1415

1516
Share your solution to the Scala community by editing this page.
1617
You can even write the whole article! [See here for the expected format](https://github.com/scalacenter/scala-advent-of-code/discussions/424)

0 commit comments

Comments
 (0)