Day 2: Cube Conundrum


Megathread guidelines

  • Keep top level comments as only solutions, if you want to say something other than a solution put it in a new post. (replies to comments can be whatever)
  • Code block support is not fully rolled out yet but likely will be in the middle of the event. Try to share solutions as both code blocks and using something such as https://topaz.github.io/paste/ or pastebin (code blocks to future proof it for when 0.19 comes out and since code blocks currently function in some apps and some instances as well if they are running a 0.19 beta)

FAQ


🔒This post will be unlocked when there is a decent amount of submissions on the leaderboard to avoid cheating for top spots

🔓 Edit: Post has been unlocked after 6 minutes

  • Andy@programming.dev
    link
    fedilink
    arrow-up
    4
    ·
    edit-2
    1 year ago

    Factor on github:

    note: lemmy mangles the less-than-or-equals sign in the possible? function

    USING: arrays assocs io.encodings.utf8 io.files kernel math
    math.parser math.vectors prettyprint regexp sequences splitting
    ;
    IN: aoc-2023.day02
    
    : known-color ( color-phrases regexp -- n )
      all-matching-subseqs [ 0 ] [
        [ split-words first string>number ] map supremum
      ] if-empty
    ;
    
    : line>known-rgb ( str -- game-id known-rgb )
      ": " split1 [ split-words last string>number ] dip
      R/ \d+ red/ R/ \d+ green/ R/ \d+ blue/
      [ known-color ] tri-curry@ tri 3array
    ;
    
    : possible? ( known-rgb test-rgb -- ? )
      v<= [ ] all?
    ;
    
    : part1 ( -- )
      "input.txt" utf8 file-lines
      [ line>known-rgb 2array ] map
      [ last { 12 13 14 } possible? ] filter
      [ first ] map-sum .
    ;
    
    : part2 ( -- )
      "input.txt" utf8 file-lines
      [ line>known-rgb nip product ] map-sum .
    ;