Created
October 23, 2024 03:42
-
-
Save pschanely/ea76b06125d0013a9e421d172073f892 to your computer and use it in GitHub Desktop.
Shared via CrossHair Playground
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 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