Skip to content

Instantly share code, notes, and snippets.

@globby
Created March 5, 2014 03:24
Show Gist options
  • Save globby/9360592 to your computer and use it in GitHub Desktop.
Save globby/9360592 to your computer and use it in GitHub Desktop.
Algorithm to check balanced brackets
def BalancedBrackets(string):
a = 0
for x in string:
a += 1 if x == '[' else -1 if x == ']' else 0
if a < 0: return False
return not a
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment