Day 18: Lavaduct Lagoon

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)
  • You can send code in code blocks by using three backticks, the code, and then three backticks or use something such as https://topaz.github.io/paste/ if you prefer sending it through a URL

FAQ

  • Zarlin@lemmy.world
    link
    fedilink
    arrow-up
    1
    ·
    6 months ago

    Nim

    Decided to go for a polygon approach for part 1 using the Shoelace formula to calculate the area. This meant part 2 only resulted in larger values, no additional computation.

    Code runs in <1ms for part 1 and 2 combined

    Source

    • cacheson@kbin.social
      link
      fedilink
      arrow-up
      3
      ·
      5 months ago

      Shoelace formula

      This would have been really useful to know about. I’ve committed to a certain level of wheel-reinvention for this event unless I get really stuck, but I’m sure it’ll come up again in the future.

      • Zarlin@lemmy.world
        link
        fedilink
        arrow-up
        2
        ·
        5 months ago

        This was actually something I learned for my job, it was nice to be able to apply it here.

        I like your commitment to wheel-reinvention, it can be a lot more fun than going for an existing or ‘intended’ approach.