For building the encrypted string: Take every 2nd char from the string, then the other chars, that are not every 2nd char, and concat them as new String. Do this n times!
Examples:
1 2
"This is a test!", 1 -> "hsi etTi sats!" "This is a test!", 2 -> "hsi etTi sats!" -> "s eT ashi tist!"
functiondecrypt(encryptedText, n) { if(n<=0) return encryptedText; if(!encryptedText.length) return''; for(let r=0;r<n;r++) { let len = encryptedText.length; let divider = (len%2)? (len/2)+1 : len/2; let arrEven = encryptedText.slice(-divider || 0).split(''), arrOdd = encryptedText.slice(0, divider || 0).split(''); encryptedText = []; for(let i=0;i<len;i++){ let val = (i%2)? arrOdd.shift() : arrEven.shift(); encryptedText.push(val); // result.push(val); } encryptedText = encryptedText.join(''); } return encryptedText; }
# Others
정규식으로 풀이
1 2 3 4 5 6 7 8 9 10 11 12 13 14
functionencrypt(text, n) { for (let i = 0; i < n; i++) { text = text && text.replace(/.(.|$)/g, '$1') + text.replace(/(.)./g, '$1') } return text }
functiondecrypt(text, n) { let l = text && text.length / 2 | 0 for (let i = 0; i < n; i++) { text = text.slice(l).replace(/./g, (_, i) => _ + (i < l ? text[i] : '')) } return text }
functionencrypt(text, n) { if (!text || !text.length || n <= 0) { return text; }
var res = ""; var oth = "";
for (var i = 0; i < text.length; ++i) { if (i % 2 == 0) { oth += text[i]; } else { res += text[i]; } }
return encrypt(res + oth, --n); }
functiondecrypt(encryptedText, n) { if (!encryptedText || !encryptedText.length || n <= 0) { return encryptedText; }
var first = encryptedText.slice(0, encryptedText.length / 2); var second = encryptedText.slice(encryptedText.length / 2); var res = ""; var i = 0; var j = 0;
while (res.length < encryptedText.length) { if (res.length % 2 == 0) { res += second[i]; i++; } else { res += first[j]; j++; } }