|
spoiler for first challenge: data = 'MAL TIRRUEZF CR MAL RKZYIOL EX MAL OIY UAE RICF MAL ACWALRM DYEUPLFWL CR ME DYEU MAIM UL IZL RKZZEKYFLF GH OHRMLZH'
c = {'I': 'a', ' ': ' ', 'L': 'e', 'Y': 'n', 'F': 'd', 'H': 'y', 'P': 'l', 'K': 'u', 'O': 'm', 'G': 'b', 'D': 'k', 'A': 'h', 'Z': 'r', 'C': 'i', 'R': 's', 'W': 'g', 'X': 'f', 'M': 't', 'E': 'o', 'U': 'w', 'T': 'p'}
"".join((c[i] if i in c else i for i in data))
> 'the password is the surname of the man who said the highest knowledge is to know that we are surrounded by mystery'
|