Ad
  • Custom User Avatar

    The kata doesn't make it clear enough that this kata is about reversing an arbitrary, supposedly random bit swapping mapping, not reverse engineering the implementation of encrypt. These two directions are vastly different; taking the latter path is completely fruitless, and means wasting a lot of meaningless time.

  • Custom User Avatar

    This comment is hidden because it contains spoiler information about the solution

  • Custom User Avatar

    rearranges the bits in the message

    There are 10000+ length messages in the random tests. If bits are rearranged in the message, that means a search space of size 2 ** 5000, which can never be solved on CodeWars ( or in the actual Universe ).

    Or I read something wrong in the description. For which I blame the description, actually.

    What am I missing?