• + 2 comments

    Tough challenge if you chose C or otherwise avoided pre-defined map structures! In C it required a highly optimised, sorted map with binary insert and binary search to avoid timeout. Even shuffling entries had to be done with memmove instead of a for loop. A lot harder than I was expecting!

    Goes to show the power of the standard template libraries.