-
Notifications
You must be signed in to change notification settings - Fork 1
/
challenge-03.js
29 lines (27 loc) · 943 Bytes
/
challenge-03.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
'use strict';
function isValid(letter) {
var invalidChars = ['{','}','[',']'];
var regex = /\((.+)\)/gm;
var regex2 = /\((.+)?\)/gm;
var res = regex.exec(letter);
if (res && res.length > 1 && res[1]) {
var res2 = regex2.exec(res[1]);
if (res2 && res2.length > 1 && !res2[1]) {
return false;
}
for (var i=0; i<res[1].length; i++) {
var char = res[1][i];
if (invalidChars.indexOf(char) > -1) {
return false;
}
}
return true;
}
return false;
}
console.log(isValid("bici coche (balón) bici coche peluche")); // -> ✅
console.log(isValid("(muñeca) consola bici")); // ✅
console.log(isValid("bici coche (balón bici coche")); // -> ❌
console.log(isValid("peluche (bici [coche) bici coche balón")); // -> ❌
console.log(isValid("(peluche {) bici")); // -> ❌
console.log(isValid("() bici")); // ❌