From 40870aaeec85eba186602cff201c9f067935f034 Mon Sep 17 00:00:00 2001 From: William Billingsley Date: Tue, 5 Dec 2023 10:25:30 +1100 Subject: [PATCH] Add day 4 solution by Will (#356) There's actually 3 solutions for part 2 in my repo; 'star8b' is probably the best actual solution though. 'star8' was my original solution; 'star8c' was a gimmick from the Discord chat speculating on how to do it without any folds. Co-authored-by: Jamie Thompson --- docs/2023/puzzles/day04.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/2023/puzzles/day04.md b/docs/2023/puzzles/day04.md index a22e5e4f7..4eabddb6f 100644 --- a/docs/2023/puzzles/day04.md +++ b/docs/2023/puzzles/day04.md @@ -196,6 +196,7 @@ end part2 - [Solution](https://gist.github.com/CJSmith-0141/11981323258a79e497539639763777e4) by [CJ Smith](https://github.com/CJSmith-0141/) - [Solution](https://github.com/bishabosha/advent-of-code-2023/blob/main/2023-day04.scala) by [Jamie Thompson](https://github.com/bishabosha) - [Solution](https://github.com/SethTisue/adventofcode/blob/main/2023/src/test/scala/Day04.scala) by [Seth Tisue](https://github.com/SethTisue/) +- [Solution](https://github.com/wbillingsley/advent-of-code-2023-scala/blob/star8b/solver.scala) by [Will Billingsley](https://github.com/wbillingsley) - [Solution](https://github.com/bxiang/advent-of-code-2023/blob/main/src/main/scala/com/aoc/Day04.scala) by [Brian Xiang](https://github.com/bxiang/) Share your solution to the Scala community by editing this page. (You can even write the whole article!)