Skip to content

Commit f4bad49

Browse files
fix(validate-parenthesis): add test case for validate parenthesis
1 parent dc8f179 commit f4bad49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

validate-parenthesis/validate-parenthesis.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def validate_parenthesis(input):
2424
return ''.join(ans)
2525

2626

27-
print(validate_parenthesis('()'))
27+
print(validate_parenthesis('()'))
2828
print(validate_parenthesis('())())'))
2929
print(validate_parenthesis('())))'))
3030
print(validate_parenthesis('().(()'))

0 commit comments

Comments
 (0)