Beta

Encrypted Code

Description
Loading description...
Fundamentals
Strings
  • Please sign in or sign up to leave a comment.
  • ZED.CWT Avatar
    d=(('O', '00'), ('H', '01'), ('E', '10'), ('L', '11'))
    test.assert_equals(decode_cipher(d, 'H'), 'O')
    
    
    To encode O
    
    Origin     O
    Mapped     00
    Reversed   00
    Indexed    (1,'0'),(2,'0')
    Fib series 1,1,2,3,5,8
    Inverted   (1,'1'),(2,'1')
    Joined     11
    Encoded    L
    

    Obviously, H is not encoded from O