03. Ancient VS Memory Изпитна задача с регекс дава 50/100 с Runtime Error
function solve(arr){
for(let str of arr){
let rx = /(?:32656 19759 32763) 0 [1-9] 0 ([0-9 ]+[1-9])/;
let match = str.match(rx);
let binary = match[1];
let result = "";
let array = binary.split(" ");
for(let index of array){
result += String.fromCharCode(Number(index));
}
console.log(result);
}
}
Tова ми е решението.
Не виждам къде може да ми е грешката освен регекса.Много ще благодаря ако някой ми подскаже :p