-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathatbash.js
39 lines (32 loc) · 1.02 KB
/
atbash.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*Le programme :
Votre programme doit décrypter un code Atbash qui est une méthode simple de cryptage.
Cela consiste à inverser l'alphabet en remplaçant la lettre a (première lettre) par z (le dernière lettre), b par y et ainsi de suite...
ENTRÉE :
Ligne 1: un mot encrypté.
SORTIE :
Ligne 1: le mot décrypté.
CONTRAINTES :
Le mot ne contient que des lettres minuscules (a-z)
EXEMPLE :
Entrée
zyxabc
Sortie
abczyx*/
function atbash(string) {
const alphabet = "abcdefghijklmnopqrstuvwxyz";
const atbashs = [...alphabet].reverse();
const result = [];
for (let j = 0; j < string.length; j++) {
for (let i = 0; i < alphabet.length; i++) {
if (string[j] === alphabet[i]) {
result.push(atbashs[i]);
}
}
}
return result.join("");
}
console.log(atbash("zyxabc")); // abczyx
console.log(atbash("shqshqskjhqskdh")); // hsjhsjhpqsjhpws
console.log(atbash("qsiduzobchdjqf")); // jhrwfalyxswqju
console.log(atbash("qspdoiqsclkcn")); // jhkwlrjhxopxm
console.log(atbash("po uebcqjkqf")); // klfvyxjqpju