Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Painstaking solution in Clear category for Cipher Map by veky
def recall_password(grill, cypher):
password = ""
for _ in grill: # must be of len 4
for grill_row, cypher_row in zip(grill, cypher):
for grill_letter, cypher_letter in zip(grill_row, cypher_row):
if grill_letter == 'X':
password += cypher_letter
row1, row2, row3, row4 = grill
grill = tuple(zip(row4, row3, row2, row1)) # rotate
return password
Sept. 18, 2014
Comments: