Skip to content

Instantly share code, notes, and snippets.

@pschanely
Created November 12, 2024 07:39
Show Gist options
  • Save pschanely/ce8ad57d5bc2b61552b59b05f36d3e1b to your computer and use it in GitHub Desktop.
Save pschanely/ce8ad57d5bc2b61552b59b05f36d3e1b to your computer and use it in GitHub Desktop.
Shared via CrossHair Playground
def make_bigger(n: int) -> int:
'''
post: __return__ != 0
'''
res1=20
res2=20
if n<50:
res1=1
else:
res1=0
if n<45:
res2=1
else:
res2=0
if res1==res2:
return 1
else:
return 0
#return func1(n)==func2(n)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment