Skip to content

Instantly share code, notes, and snippets.

@RodrigoDornelles
Created February 2, 2023 13:50
Show Gist options
  • Save RodrigoDornelles/e5034c442fd6e494b851479979f0646e to your computer and use it in GitHub Desktop.
Save RodrigoDornelles/e5034c442fd6e494b851479979f0646e to your computer and use it in GitHub Desktop.
greatest number between A and B
def max(a, b):
return (a + b + abs(a - b)) / 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment