Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for Cipher Map by Moff
def recall_password(grille, cipher):
g = list(map(list, grille))
result = ''
for _ in range(4):
result += ''.join(cipher[i][j] for i, row in enumerate(g)
for j, v in enumerate(row) if v == 'X')
g = [[g[r][c] for r in range(len(g) - 1, -1, -1)]
for c in range(len(g[0]))]
return result
Aug. 8, 2015