Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
generator solution in Clear category for Cipher Map by gyahun_dash
def index_generator(indices):
for trial in range(4):
yield from indices
indices = sorted(4 * (i % 4) + 3 - (i // 4) for i in indices)
def recall_password(grille, password):
initial = [i for i, cell in enumerate(''.join(grille)) if cell == 'X']
return ''.join(''.join(password)[i] for i in index_generator(initial))
May 21, 2014
Comments: