Skip to content

Instantly share code, notes, and snippets.

@pschanely
Created December 10, 2025 17:37
Show Gist options
  • Select an option

  • Save pschanely/f9c5c8a688aa413c16d2b5d2287dd5f9 to your computer and use it in GitHub Desktop.

Select an option

Save pschanely/f9c5c8a688aa413c16d2b5d2287dd5f9 to your computer and use it in GitHub Desktop.
Shared via CrossHair Playground
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