Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Second solution in Clear category for Cipher Map by pokosasa
def recall_password(cipher_grille, ciphered_password):
c_p="".join(ciphered_password)
answer=""
for _ in range(4):
c_g="".join(cipher_grille)
answer += "".join((p for g,p in zip(c_g,c_p) if g=="X"))
cipher_grille=tuple("".join(z) for z in zip(*cipher_grille[::-1]))
return answer
July 10, 2019
Comments: