Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Numpy solution in 3rd party category for Cipher Map by flpo
from numpy import matrix, extract, rot90
from itertools import chain
def recall_password(*args):
cipher, password = (matrix(list(map(list, arg))) for arg in args)
return ''.join(chain.from_iterable(
extract(rot90(cipher, i, (1, 0)) == 'X', password) for i in range(4)
))
June 17, 2017
Comments: