Skip to content

Instantly share code, notes, and snippets.

@AbeEstrada
Last active September 2, 2025 02:48
Show Gist options
  • Select an option

  • Save AbeEstrada/befe892280d98ed1705f8c67a6e21354 to your computer and use it in GitHub Desktop.

Select an option

Save AbeEstrada/befe892280d98ed1705f8c67a6e21354 to your computer and use it in GitHub Desktop.
Exercise: Balanced Brackets
function isBalanced(s) {
const pattern = /\[\]|\(\)|\{\}/g;
while (pattern.test(s)) {
s = s.replace(pattern, "");
}
return s ? "NO" : "YES";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment