Skip to content

Instantly share code, notes, and snippets.

@pschanely
Created February 29, 2024 11:26
Show Gist options
  • Save pschanely/207926040f4117abf36f5fd14ff2dff4 to your computer and use it in GitHub Desktop.
Save pschanely/207926040f4117abf36f5fd14ff2dff4 to your computer and use it in GitHub Desktop.
Shared via CrossHair Playground
def ex1(x=0):
if x == 0: return 0
if x*2 == 1:
return -1
else:
return 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment