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