This is a gist of the interesting codes in the watermelon challengue
Created
August 1, 2022 04:09
-
-
Save EmmaG2/f9a5d6ac938109397056cb89299fba3a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def prunner(str): | |
if len(str) == 0: | |
return True | |
elif len(str.replace("[]","").replace("()","")) == len(str): | |
return False | |
return prunner(str.replace("[]","").replace("()","")) | |
print("([])",prunner("([()[]()])()")) | |
print("(([()])))",prunner("(([()])))")) | |
print("([()[]()])()",prunner("([()[]()])()")) | |
print("(([(]])))",prunner("(([(]]]]]")) | |
print(")([]][",prunner(")([]][")) | |
print("))))",prunner("))))")) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment