1
0
Fork 0
mirror of https://gitlab.com/mfocko/CodeWars.git synced 2024-09-18 21:56:57 +02:00
CodeWars/5kyu/valid_parentheses/solution.py

12 lines
246 B
Python
Raw Permalink Normal View History

def valid_parentheses(string):
opened = 0
for letter in string:
if letter == '(':
opened += 1
elif letter == ')':
opened -= 1
if opened < 0:
return False
return opened == 0