Skip to content

Commit

Permalink
Update valid_parentheses.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ikostan committed Dec 13, 2024
1 parent f6a0595 commit d8cab23
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion kyu_5/valid_parentheses/valid_parentheses.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ def valid_parentheses(string: str) -> bool:
:param string: str
:return: bool
"""

string = clean_up_string(string)

if string == "" or not string:
Expand Down

0 comments on commit d8cab23

Please sign in to comment.