Skip to content

Instantly share code, notes, and snippets.

@EmmaG2
Created August 1, 2022 04:09
Show Gist options
  • Save EmmaG2/f9a5d6ac938109397056cb89299fba3a to your computer and use it in GitHub Desktop.
Save EmmaG2/f9a5d6ac938109397056cb89299fba3a to your computer and use it in GitHub Desktop.

Interesting codes

This is a gist of the interesting codes in the watermelon challengue

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