Thứ Năm, 9 tháng 1, 2020

[Hackerrank] Solution of Encryption in JavaScript

[Hackerrank] Solution of Encryption in JavaScript
[Hackerrank] Solution of Encryption in JavaScript
[Hackerrank] Solution of Encryption in JavaScript
// Complete the encryption function below.
function encryption(s) {
const ceil = Math.ceil(Math.sqrt(s.length));
let temp = s;
let array = [];
while(temp) {
array = array.concat(temp.substring(0, ceil));
temp = temp.substring(ceil)
}
let result = [];
for(let i = 0 ; i < ceil; i++) {
result = result.concat(
array.reduce((r, v) => {
return r + (v[i] || "")
}, "")
)
};
return result.join(' ');
}

post written by:

Related Posts

0 nhận xét: