Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
j.. j.. j.. join!!! solution in Creative category for Cipher Map by StefanPochmann
# migrated from python 2.7
def recall_password(gril, ciph):
pwd, j = '', ''.join
for _ in range(4):
pwd += j(c for g, c in zip(j(gril), j(ciph)) if g == 'X')
gril = list(map(j, list(zip(*gril[::-1]))))
return pwd
April 30, 2015
Comments: