Skip to content

Instantly share code, notes, and snippets.

@fromradio
Created October 18, 2016 03:01
Show Gist options
  • Save fromradio/b882c1f61b67ca5a19298b90fbc837d5 to your computer and use it in GitHub Desktop.
Save fromradio/b882c1f61b67ca5a19298b90fbc837d5 to your computer and use it in GitHub Desktop.
Max Of Three Ruimin
```python
def max_of_three(a, b, c):
if a > b and a > c:
return a
elif b < c:
return c
else:
return b
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment