Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@QuatoHub
Created November 27, 2021 12:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save QuatoHub/a5e5de2df3fb560d637649cff010e3d7 to your computer and use it in GitHub Desktop.
Save QuatoHub/a5e5de2df3fb560d637649cff010e3d7 to your computer and use it in GitHub Desktop.
let output = balancedBrackets('[](){}');
console.log(output); // --> true
output = balancedBrackets('[({})]');
console.log(output); // --> true
let output3 = balancedBrackets('[(]{)}');
console.log(output); // --> false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment