From 78f921fa399ab0a4e87c32e9041746f214afb57a Mon Sep 17 00:00:00 2001 From: ImAlpha Date: Sun, 23 Jul 2023 17:59:35 -0700 Subject: [PATCH] created file for question 20 --- Top150Interview/20_Valid_Parenthesis.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 Top150Interview/20_Valid_Parenthesis.py diff --git a/Top150Interview/20_Valid_Parenthesis.py b/Top150Interview/20_Valid_Parenthesis.py new file mode 100644 index 0000000..e488cc8 --- /dev/null +++ b/Top150Interview/20_Valid_Parenthesis.py @@ -0,0 +1,6 @@ +def isValid(self, s): + """ + :type s: str + :rtype: bool + """ + \ No newline at end of file