Day 22: Monkey Market

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

  • Deebster
    link
    fedilink
    English
    arrow-up
    2
    ·
    1 month ago

    Six minutes? 😅 I was feeling crappy about my 30 seconds (my naive big O cubed(?) logic means my code spends most of its time testing array equalities - 72 billion samples in the flamegraph!)

    • CameronDevOPM
      link
      fedilink
      arrow-up
      1
      ·
      1 month ago

      Most of my time is wasted on hashmap stuff. And the processing into the string, which really isnt needed anymore. :/

      • Deebster
        link
        fedilink
        English
        arrow-up
        1
        ·
        edit-2
        1 month ago

        Have you tried gxhash or one of the other non-cryptographic hashers?

        • CameronDevOPM
          link
          fedilink
          arrow-up
          1
          ·
          1 month ago

          I probably should give that a try. Looks like it can just drop in, so might try it later. I see FxHash is pretty popular here as well.