Skip to content

Commit

Permalink
Update valid_braces.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ikostan committed Nov 27, 2024
1 parent 8318beb commit 3f51eaf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kyu_6/valid_braces/valid_braces.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ def valid_braces(string: str) -> bool:
A function that takes a string of braces, and determines if the order
of the braces is valid. It should return true if the string is valid,
and false if it's invalid.
:param string:
:return:
:param string: a string consist of brackets
:return: boolean, indicates if input string is valid
"""
# Calc length of the input string
len_str: int = len(string)
Expand Down

0 comments on commit 3f51eaf

Please sign in to comment.