mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-09 19:19:07 +01:00
12 lines
246 B
Python
12 lines
246 B
Python
|
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
|