Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
6-liner solution in Clear category for Cipher Map by mangeurdecowan
def recall_password(grille, password):
answer = ""
for _ in range(4):
answer += ''.join([password[r][c] for r in range(4) for c in range(4) if grille[r][c] == 'X'])
grille = list(map(''.join, zip(*grille[::-1])))
return answer
July 21, 2021
Comments: