mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-24 05:21:09 +00:00
26 lines
749 B
Python
26 lines
749 B
Python
from __future__ import print_function
|
|
from __future__ import absolute_import
|
|
from stack import Stack
|
|
|
|
__author__ = 'Omkar Pathak'
|
|
|
|
|
|
def balanced_parentheses(parentheses):
|
|
""" Use a stack to check if a string of parentheses is balanced."""
|
|
stack = Stack(len(parentheses))
|
|
for parenthesis in parentheses:
|
|
if parenthesis == '(':
|
|
stack.push(parenthesis)
|
|
elif parenthesis == ')':
|
|
if stack.is_empty():
|
|
return False
|
|
stack.pop()
|
|
return stack.is_empty()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
examples = ['((()))', '((())', '(()))']
|
|
print('Balanced parentheses demonstration:\n')
|
|
for example in examples:
|
|
print(example + ': ' + str(balanced_parentheses(example)))
|