diff --git a/docs/2024/puzzles/day01.md b/docs/2024/puzzles/day01.md index f8e0752d5..8c15313bb 100644 --- a/docs/2024/puzzles/day01.md +++ b/docs/2024/puzzles/day01.md @@ -87,7 +87,7 @@ end part2 - [Solution](https://github.com/rolandtritsch/scala3-aoc-2024/blob/trunk/src/aoc2024/Day01.scala) by [Roland Tritsch](https://github.com/rolandtritsch) - [Solution](https://github.com/profunctor-optics/advent-2024/blob/main/src/main/scala/advent2024/Day01.scala) by [Georgi Krastev](https://github.com/joroKr21) - [Solution](https://github.com/jportway/advent2024/blob/master/src/main/scala/Day1.scala) by [Joshua Portway](https://github.com/jportway) -- [Solution](https://github.com/TheDrawingCoder-Gamer/adventofcode2024/blob/master/src/main/scala/day1.sc) by [Bulby](https://github.com/TheDrawingCoder-Gamer) +- [Solution](https://github.com/TheDrawingCoder-Gamer/adventofcode2024/blob/e163baeaedcd90732b5e19f578a2faadeb1ef872/src/main/scala/day1.sc) by [Bulby](https://github.com/TheDrawingCoder-Gamer) Share your solution to the Scala community by editing this page. You can even write the whole article! [See here for the expected format](https://github.com/scalacenter/scala-advent-of-code/discussions/424) diff --git a/docs/2024/puzzles/day02.md b/docs/2024/puzzles/day02.md index 33ec19d2d..577700773 100644 --- a/docs/2024/puzzles/day02.md +++ b/docs/2024/puzzles/day02.md @@ -106,7 +106,7 @@ def part2(input: String): Int = parse(input).count(_.isDampenedSafe) - [Solution](https://github.com/rolandtritsch/scala3-aoc-2024/blob/trunk/src/aoc2024/Day02.scala) by [Roland Tritsch](https://github.com/rolandtritsch) - [Solution](https://github.com/profunctor-optics/advent-2024/blob/main/src/main/scala/advent2024/Day02.scala) by [Georgi Krastev](https://github.com/joroKr21) - [Solution](https://github.com/jportway/advent2024/blob/master/src/main/scala/Day2.scala) by [Joshua Portway](https://github.com/jportway) -- [Solution](https://github.com/TheDrawingCoder-Gamer/adventofcode2024/blob/master/src/main/scala/day2.sc) by [Bulby](https://github.com/TheDrawingCoder-Gamer) +- [Solution](https://github.com/TheDrawingCoder-Gamer/adventofcode2024/blob/e163baeaedcd90732b5e19f578a2faadeb1ef872/src/main/scala/day2.sc) by [Bulby](https://github.com/TheDrawingCoder-Gamer) Share your solution to the Scala community by editing this page. You can even write the whole article! [See here for the expected format](https://github.com/scalacenter/scala-advent-of-code/discussions/424) diff --git a/docs/2024/puzzles/day03.md b/docs/2024/puzzles/day03.md index 1560a0357..ba54368e8 100644 --- a/docs/2024/puzzles/day03.md +++ b/docs/2024/puzzles/day03.md @@ -155,7 +155,7 @@ object DayThree: - [Solution](https://github.com/rolandtritsch/scala3-aoc-2024/blob/trunk/src/aoc2024/Day03.scala) by [Roland Tritsch](https://github.com/rolandtritsch) - [Solution](https://github.com/profunctor-optics/advent-2024/blob/main/src/main/scala/advent2024/Day03.scala) by [Georgi Krastev](https://github.com/joroKr21) - [Solution](https://github.com/jportway/advent2024/blob/master/src/main/scala/Day3.scala) by [Joshua Portway](https://github.com/jportway) -- [Solution](https://github.com/TheDrawingCoder-Gamer/adventofcode2024/blob/master/src/main/scala/day3.sc) by [Bulby](https://github.com/TheDrawingCoder-Gamer) +- [Solution](https://github.com/TheDrawingCoder-Gamer/adventofcode2024/blob/e163baeaedcd90732b5e19f578a2faadeb1ef872/src/main/scala/day3.sc) by [Bulby](https://github.com/TheDrawingCoder-Gamer) Share your solution to the Scala community by editing this page. You can even write the whole article! [See here for the expected format](https://github.com/scalacenter/scala-advent-of-code/discussions/424) diff --git a/docs/2024/puzzles/day04.md b/docs/2024/puzzles/day04.md index 5d369fec7..3b44ba6b0 100644 --- a/docs/2024/puzzles/day04.md +++ b/docs/2024/puzzles/day04.md @@ -302,7 +302,7 @@ def totalMAS(grid: Grid): Int = - [Solution](https://github.com/Jannyboy11/AdventOfCode2024/blob/master/src/main/scala/day04/Day04.scala) of [Jan Boerman](https://x.com/JanBoerman95) - [Solution](https://github.com/profunctor-optics/advent-2024/blob/main/src/main/scala/advent2024/Day04.scala) by [Georgi Krastev](https://github.com/joroKr21) - [Solution](https://github.com/jportway/advent2024/blob/master/src/main/scala/Day4.scala) by [Joshua Portway](https://github.com/jportway) -- [Solution](https://github.com/TheDrawingCoder-Gamer/adventofcode2024/blob/master/src/main/scala/day4.sc) by [Bulby](https://github.com/TheDrawingCoder-Gamer) +- [Solution](https://github.com/TheDrawingCoder-Gamer/adventofcode2024/blob/e163baeaedcd90732b5e19f578a2faadeb1ef872/src/main/scala/day4.sc) by [Bulby](https://github.com/TheDrawingCoder-Gamer) Share your solution to the Scala community by editing this page. You can even write the whole article! [See here for the expected format](https://github.com/scalacenter/scala-advent-of-code/discussions/424) diff --git a/docs/2024/puzzles/day05.md b/docs/2024/puzzles/day05.md index 985e63a83..281ad1868 100644 --- a/docs/2024/puzzles/day05.md +++ b/docs/2024/puzzles/day05.md @@ -213,7 +213,7 @@ def part2(input: String) = - [Solution](https://github.com/Jannyboy11/AdventOfCode2024/blob/master/src/main/scala/day05/Day05.scala) of [Jan Boerman](https://x.com/JanBoerman95) - [Solution](https://github.com/profunctor-optics/advent-2024/blob/main/src/main/scala/advent2024/Day05.scala) by [Georgi Krastev](https://github.com/joroKr21) - [Solution](https://github.com/jportway/advent2024/blob/master/src/main/scala/Day5.scala) by [Joshua Portway](https://github.com/jportway) -- [Solution](https://github.com/TheDrawingCoder-Gamer/adventofcode2024/blob/master/src/main/scala/day5.sc) by [Bulby](https://github.com/TheDrawingCoder-Gamer) +- [Solution](https://github.com/TheDrawingCoder-Gamer/adventofcode2024/blob/e163baeaedcd90732b5e19f578a2faadeb1ef872/src/main/scala/day5.sc) by [Bulby](https://github.com/TheDrawingCoder-Gamer) Share your solution to the Scala community by editing this page. You can even write the whole article! [See here for the expected format](https://github.com/scalacenter/scala-advent-of-code/discussions/424) diff --git a/docs/2024/puzzles/day06.md b/docs/2024/puzzles/day06.md index e88379b3a..0a58782cd 100644 --- a/docs/2024/puzzles/day06.md +++ b/docs/2024/puzzles/day06.md @@ -228,7 +228,7 @@ https://adventofcode.com/2024/day/6 - [Solution](https://github.com/profunctor-optics/advent-2024/blob/main/src/main/scala/advent2024/Day06.scala) by [Georgi Krastev](https://github.com/joroKr21) - [Solution](https://github.com/jportway/advent2024/blob/master/src/main/scala/Day6.scala) by [Joshua Portway](https://github.com/jportway) - [Solution](https://github.com/Philippus/adventofcode/blob/main/src/main/scala/adventofcode2024/Day06.scala) by [Philippus Baalman](https://github.com/philippus) -- [Solution](https://github.com/TheDrawingCoder-Gamer/adventofcode2024/blob/master/src/main/scala/day6.sc) by [Bulby](https://github.com/TheDrawingCoder-Gamer) +- [Solution](https://github.com/TheDrawingCoder-Gamer/adventofcode2024/blob/e163baeaedcd90732b5e19f578a2faadeb1ef872/src/main/scala/day6.sc) by [Bulby](https://github.com/TheDrawingCoder-Gamer) Share your solution to the Scala community by editing this page. You can even write the whole article! [See here for the expected format](https://github.com/scalacenter/scala-advent-of-code/discussions/424) diff --git a/docs/2024/puzzles/day07.md b/docs/2024/puzzles/day07.md index 9db6f7138..bc8882529 100644 --- a/docs/2024/puzzles/day07.md +++ b/docs/2024/puzzles/day07.md @@ -106,7 +106,7 @@ end part2 - [Solution](https://github.com/nichobi/advent-of-code-2024/blob/main/07/solution.scala) by [nichobi](https://github.com/nichobi) - [Solution](https://github.com/profunctor-optics/advent-2024/blob/main/src/main/scala/advent2024/Day07.scala) by [Georgi Krastev](https://github.com/joroKr21) - [Solution](https://github.com/jportway/advent2024/blob/master/src/main/scala/Day7.scala) by [Joshua Portway](https://github.com/jportway) -- [Solution](https://github.com/TheDrawingCoder-Gamer/adventofcode2024/blob/master/src/main/scala/day7.sc) by [Bulby](https://github.com/TheDrawingCoder-Gamer) +- [Solution](https://github.com/TheDrawingCoder-Gamer/adventofcode2024/blob/e163baeaedcd90732b5e19f578a2faadeb1ef872/src/main/scala/day7.sc) by [Bulby](https://github.com/TheDrawingCoder-Gamer) - [Solution](https://github.com/itsjoeoui/aoc2024/blob/main/src/day07.scala) by [itsjoeoui](https://github.com/itsjoeoui) Share your solution to the Scala community by editing this page. diff --git a/docs/2024/puzzles/day08.md b/docs/2024/puzzles/day08.md index 20930ff6f..1724f0379 100644 --- a/docs/2024/puzzles/day08.md +++ b/docs/2024/puzzles/day08.md @@ -145,7 +145,7 @@ end part2 - [Solution](https://github.com/rolandtritsch/scala3-aoc-2024/blob/trunk/src/aoc2024/Day08.scala) by [Roland Tritsch](https://github.com/rolandtritsch) - [Solution](https://github.com/merlinorg/aoc2024/blob/main/src/main/scala/Day8.scala) by [merlinorg](https://github.com/merlinorg) - [Solution](https://github.com/Philippus/adventofcode/blob/main/src/main/scala/adventofcode2024/Day08.scala) by [Philippus Baalman](https://github.com/philippus) -- [Solution](https://github.com/TheDrawingCoder-Gamer/adventofcode2024/blob/master/src/main/scala/day8.sc) by [Bulby](https://github.com/TheDrawingCoder-Gamer) +- [Solution](https://github.com/TheDrawingCoder-Gamer/adventofcode2024/blob/e163baeaedcd90732b5e19f578a2faadeb1ef872/src/main/scala/day8.sc) by [Bulby](https://github.com/TheDrawingCoder-Gamer) - [Solution](https://github.com/itsjoeoui/aoc2024/blob/main/src/day08.scala) by [itsjoeoui](https://github.com/itsjoeoui) Share your solution to the Scala community by editing this page. diff --git a/docs/2024/puzzles/day09.md b/docs/2024/puzzles/day09.md index fb108db20..0f95f97ae 100644 --- a/docs/2024/puzzles/day09.md +++ b/docs/2024/puzzles/day09.md @@ -320,6 +320,6 @@ def part2(input: String): Long = - [Solution](https://github.com/rmarbeck/advent2024/blob/main/day9/src/main/scala/Solution.scala) by [Raphaël Marbeck](https://github.com/rmarbeck) - [Solution](https://github.com/jportway/advent2024/blob/master/src/main/scala/Day9.scala) by [Joshua Portway](https://github.com/jportway) - [Solution](https://github.com/rolandtritsch/scala3-aoc-2024/blob/trunk/src/aoc2024/Day09.scala) by [Roland Tritsch](https://github.com/rolandtritsch) -- [Solution](https://github.com/TheDrawingCoder-Gamer/adventofcode2024/blob/master/src/main/scala/day9.sc) by [Bulby](https://github.com/TheDrawingCoder-Gamer) +- [Solution](https://github.com/TheDrawingCoder-Gamer/adventofcode2024/blob/e163baeaedcd90732b5e19f578a2faadeb1ef872/src/main/scala/day9.sc) by [Bulby](https://github.com/TheDrawingCoder-Gamer) Share your solution to the Scala community by editing this page. diff --git a/docs/2024/puzzles/day10.md b/docs/2024/puzzles/day10.md index afbcf78c8..551edf8d6 100644 --- a/docs/2024/puzzles/day10.md +++ b/docs/2024/puzzles/day10.md @@ -157,7 +157,7 @@ throw away duplicate counts. - [Solution](https://github.com/aamiguet/advent-2024/blob/main/src/main/scala/ch/aamiguet/advent2024/Day10.scala) by [Antoine Amiguet](https://github.com/aamiguet) - [Solution](https://github.com/jportway/advent2024/blob/master/src/main/scala/Day10.scala) by [Joshua Portway](https://github.com/jportway) - [Solution](https://github.com/scarf005/aoc-scala/blob/main/2024/day10.scala) by [scarf](https://github.com/scarf005) -- [Solution](https://github.com/TheDrawingCoder-Gamer/adventofcode2024/blob/master/src/main/scala/day10.sc) by [Bulby](https://github.com/TheDrawingCoder-Gamer) +- [Solution](https://github.com/TheDrawingCoder-Gamer/adventofcode2024/blob/e163baeaedcd90732b5e19f578a2faadeb1ef872/src/main/scala/day10.sc) by [Bulby](https://github.com/TheDrawingCoder-Gamer) - [Solution](https://github.com/Philippus/adventofcode/blob/main/src/main/scala/adventofcode2024/Day10.scala) by [Philippus Baalman](https://github.com/philippus) Share your solution to the Scala community by editing this page. diff --git a/docs/2024/puzzles/day11.md b/docs/2024/puzzles/day11.md index 56a9b11db..c9d747135 100644 --- a/docs/2024/puzzles/day11.md +++ b/docs/2024/puzzles/day11.md @@ -254,7 +254,7 @@ extension (stones: Map[Long, Long]) - [Solution](https://github.com/makingthematrix/AdventOfCode2024/blob/main/src/main/scala/io/github/makingthematrix/AdventofCode2024/DayEleven.scala) by [Maciej Gorywoda](https://github.com/makingthematrix) - [Solution](https://github.com/aamiguet/advent-2024/blob/main/src/main/scala/ch/aamiguet/advent2024/Day11.scala) by [Antoine Amiguet](https://github.com/aamiguet) - [Solution](https://github.com/Philippus/adventofcode/blob/main/src/main/scala/adventofcode2024/Day11.scala) by [Philippus Baalman](https://github.com/philippus) -- [Solution](https://github.com/TheDrawingCoder-Gamer/adventofcode2024/blob/master/src/main/scala/day11.sc) by [Bulby](https://github.com/TheDrawingCoder-Gamer) +- [Solution](https://github.com/TheDrawingCoder-Gamer/adventofcode2024/blob/e163baeaedcd90732b5e19f578a2faadeb1ef872/src/main/scala/day11.sc) by [Bulby](https://github.com/TheDrawingCoder-Gamer) Share your solution to the Scala community by editing this page. You can even write the whole article! [See here for the expected format](https://github.com/scalacenter/scala-advent-of-code/discussions/424) diff --git a/docs/2024/puzzles/day13.md b/docs/2024/puzzles/day13.md index a99ce2fe3..69fed87f0 100644 --- a/docs/2024/puzzles/day13.md +++ b/docs/2024/puzzles/day13.md @@ -225,7 +225,7 @@ def part2(input: String): Long = - [Solution](https://gist.github.com/mbovel/f26d82b2fd3d46cb55520268994371f8) by [mbovel](https://github.com/mbovel) - [Solution](https://github.com/Philippus/adventofcode/blob/main/src/main/scala/adventofcode2024/Day13.scala) by [Philippus Baalman](https://github.com/philippus) - [Solution](https://github.com/jnclt/adventofcode2024/blob/main/day13/claw-contraption.sc) by [jnclt](https://github.com/jnclt) -- [Solution](https://github.com/TheDrawingCoder-Gamer/adventofcode2024/blob/master/src/main/scala/Day13.scala) by [Bulby](https://github.com/TheDrawingCoder-Gamer) +- [Solution](https://github.com/TheDrawingCoder-Gamer/adventofcode2024/blob/e163baeaedcd90732b5e19f578a2faadeb1ef872/src/main/scala/Day13.scala) by [Bulby](https://github.com/TheDrawingCoder-Gamer) - [Solution](https://github.com/jportway/advent2024/blob/master/src/main/scala/Day13.scala) by [Joshua Portway](https://github.com/jportway) Share your solution to the Scala community by editing this page. diff --git a/docs/2024/puzzles/day16.md b/docs/2024/puzzles/day16.md index c5377158b..6aa571c4a 100644 --- a/docs/2024/puzzles/day16.md +++ b/docs/2024/puzzles/day16.md @@ -471,7 +471,7 @@ given Ordering[Reindeer] = Ordering.by(-_.score) - [Solution](https://github.com/aamiguet/advent-2024/blob/main/src/main/scala/ch/aamiguet/advent2024/Day16.scala) by [Antoine Amiguet](https://github.com/aamiguet) - [Solution](https://github.com/AlexMckey/AoC2024_Scala/blob/master/src/year2024/day16.scala) by [Alex Mc'key](https://github.com/AlexMckey) - [Solution](https://github.com/rmarbeck/advent2024/blob/main/day16/src/main/scala/Solution.scala) by [Raphaël Marbeck](https://github.com/rmarbeck) -- [Solution](https://github.com/TheDrawingCoder-Gamer/adventofcode2024/blob/master/src/main/scala/Day16.scala) by [Bulby](https://github.com/TheDrawingCoder-Gamer) +- [Solution](https://github.com/TheDrawingCoder-Gamer/adventofcode2024/blob/e163baeaedcd90732b5e19f578a2faadeb1ef872/src/main/scala/Day16.scala) by [Bulby](https://github.com/TheDrawingCoder-Gamer) - [Solution](https://github.com/jportway/advent2024/blob/master/src/main/scala/Day16.scala) by [Joshua Portway](https://github.com/jportway) Share your solution to the Scala community by editing this page.