Created
December 10, 2025 17:37
-
-
Save pschanely/f9c5c8a688aa413c16d2b5d2287dd5f9 to your computer and use it in GitHub Desktop.
Shared via CrossHair Playground
This file contains hidden or 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__ % 2 == 0 | |
| ''' | |
| sum = 0 | |
| for i in range(n): | |
| sum += 2 | |
| return sum | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment