Skip to content

Instantly share code, notes, and snippets.

@cristianbgp
Created January 22, 2019 16:01
Show Gist options
  • Save cristianbgp/3c90e594992a64be136d403958f1cdae to your computer and use it in GitHub Desktop.
Save cristianbgp/3c90e594992a64be136d403958f1cdae to your computer and use it in GitHub Desktop.
function validParentheses(parens) {
pairLenght = parens.length;
for (let i = 0; i < pairLenght; i++) {
parens = parens.replace('()','');
}
return parens.length < 1;
}
console.log(validParentheses('(()'));
console.log(validParentheses('(())((()())())'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment