Last active
December 7, 2024 15:17
-
-
Save mscha/cace03ea387166be008ae2bb57aa8390 to your computer and use it in GitHub Desktop.
Advent of Code 2024 day 7 - silly version with junctions and custom operators
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env raku | |
| use v6.d; | |
| $*OUT.out-buffer = False; # Autoflush | |
| # Advent of Code 2024 day 7 -- https://adventofcode.com/2024/day/7 | |
| sub infix:<∥>(Int $i, Int $j --> Int) | |
| { | |
| # Slightly faster than ($i~$j).Int | |
| return 10*$i + $j if $j < 10; | |
| return 100*$i + $j if $j < 100; | |
| return 1000*$i + $j if $j < 1000; | |
| return 10000*$i + $j if $j < 10000; | |
| return 100000*$i + $j if $j < 100000; | |
| return 1000000*$i + $j if $j < 1000000; | |
| die "My head hurts, $j is too big!"; | |
| } | |
| sub infix:<+×>(Int $i, Int $j) { $i + $j | $i × $j } | |
| sub infix:<+×∥>(Int $i, Int $j) { $i + $j | $i × $j | $i ∥ $j } | |
| sub valid-equation($equation) | |
| { | |
| my ($value, @terms) = $equation.comb(/\d+/)».Int; | |
| return ([+×] @terms) == $value ?? $value !! 0; | |
| } | |
| sub valid-equation-v2($equation) | |
| { | |
| my ($value, @terms) = $equation.comb(/\d+/)».Int; | |
| return ([+×∥] @terms) == $value ?? $value !! 0; | |
| } | |
| sub MAIN(IO() $inputfile where *.f = 'aoc07.input', Bool :v(:$verbose) = False) | |
| { | |
| my @equations = $inputfile.lines; | |
| say "Part 1: ", @equations».&valid-equation.sum; | |
| say "Part 2: ", @equations».&valid-equation-v2.sum; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment