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