AdventOfCode2020
AdventOfCode2020 copied to clipboard
Wild
Totally wild that this could be done in a fold. Kudos!
https://github.com/AxlLind/AdventOfCode2020/blob/1157ff5e49343526c42c504a267d8c8427f06f6d/src/bin/15.rs#L8
Thanks, I appreciate it! This implementation definitely wasn't my initial one but the more I looked at it the more it simplified into a single fold at the end 😅 The fact that HashMap::insert() returns the previous value is really what made it so clean.