Skip to content

Instantly share code, notes, and snippets.

@pschanely
Created October 23, 2024 03:42
Show Gist options
  • Save pschanely/ea76b06125d0013a9e421d172073f892 to your computer and use it in GitHub Desktop.
Save pschanely/ea76b06125d0013a9e421d172073f892 to your computer and use it in GitHub Desktop.
Shared via CrossHair Playground
def make_bigger(n: int) -> int:
'''
post: __return__ > 0
'''
if n > -10:
return n + 10
else:
return -n
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment