Skip to content

Instantly share code, notes, and snippets.

@ondrejkralik
Created October 9, 2018 14:32
Show Gist options
  • Save ondrejkralik/6d73668ce1fc06b8556b62f8b81e71a0 to your computer and use it in GitHub Desktop.
Save ondrejkralik/6d73668ce1fc06b8556b62f8b81e71a0 to your computer and use it in GitHub Desktop.
const check = (input) => {
const arr = [];
const right = [')', '}', ']'];
const left = ['(', '{', '['];
for (let i = 0; i < input.length; i++) {
const s = input[i];
if (left.indexOf(s) !== -1) {
arr.push(s);
}
const r = right.indexOf(s);
if (r !== -1) {
const opposite = arr.pop();
if (opposite !== left[r]) {
return false;
}
}
}
return arr.length === 0;
}
console.log('check1', check('({[]})()'));
console.log('check2', check('(){'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment