Skip to content

Commit

Permalink
Update test_valid_braces.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ikostan committed Nov 25, 2024
1 parent b872cc7 commit cfef58f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion kyu_6/valid_braces/test_valid_braces.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,10 @@ def test_valid_braces(self):
("(({{[[]]}}))", True),
("(((({{", False),
(")(}{][", False),
("())({}}{()][][", False)
("())({}}{()][][", False),
("{}()[]", True),
("([}{])", False),
("{}({})[]", True),
)

# pylint: enable=line-too-long
Expand Down

0 comments on commit cfef58f

Please sign in to comment.