Skip to content

Commit

Permalink
Pin links to correct commit (#803)
Browse files Browse the repository at this point in the history
  • Loading branch information
TheDrawingCoder-Gamer authored Dec 24, 2024
1 parent 78061e8 commit c84499d
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion docs/2024/puzzles/day01.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
2 changes: 1 addition & 1 deletion docs/2024/puzzles/day02.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
2 changes: 1 addition & 1 deletion docs/2024/puzzles/day03.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
2 changes: 1 addition & 1 deletion docs/2024/puzzles/day04.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
2 changes: 1 addition & 1 deletion docs/2024/puzzles/day05.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
2 changes: 1 addition & 1 deletion docs/2024/puzzles/day06.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
2 changes: 1 addition & 1 deletion docs/2024/puzzles/day07.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion docs/2024/puzzles/day08.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion docs/2024/puzzles/day09.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion docs/2024/puzzles/day10.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion docs/2024/puzzles/day11.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
2 changes: 1 addition & 1 deletion docs/2024/puzzles/day13.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion docs/2024/puzzles/day16.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit c84499d

Please sign in to comment.