Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
For for for solution in Clear category for Cipher Map by Sioul
def recall_password(cipher_grille, ciphered_password):
password = ''
for _ in range(4): # for each orientation
for i in range(4):
for j in range(4):
if cipher_grille[i][j] == 'X':
password += ciphered_password[i][j]
cipher_grille = tuple(zip(*reversed(cipher_grille))) #rotation
return password
Dec. 10, 2019
Comments: