From d8cab2357ed0141758419b8c4b2de19a43ec650c Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 13 Dec 2024 01:43:49 -0800 Subject: [PATCH] Update valid_parentheses.py --- kyu_5/valid_parentheses/valid_parentheses.py | 1 - 1 file changed, 1 deletion(-) diff --git a/kyu_5/valid_parentheses/valid_parentheses.py b/kyu_5/valid_parentheses/valid_parentheses.py index 5e518265b6e..86966618860 100644 --- a/kyu_5/valid_parentheses/valid_parentheses.py +++ b/kyu_5/valid_parentheses/valid_parentheses.py @@ -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: