Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for [old] Cipher Map by mozurin
"use strict";
function recallPassword(grille, password)
{
return [...'loop'].map(
_ => {
const fragment = grille.map(
(row, r) => [...row].map(
(char, c) => char === 'X'? password[r][c] : ''
).join('')
).join('');
grille = grille.map(
(row, r) => [...row].map(
(_, c) => grille[grille.length - c - 1][r]
).join('')
);
return fragment;
}
).join('');
}
June 18, 2018
Comments: