Skip to content

Latest commit

 

History

History
6 lines (4 loc) · 327 Bytes

File metadata and controls

6 lines (4 loc) · 327 Bytes

Max Of Three

Problem

Implement a function that takes as input three variables, and returns the largest of the three. Do this without using the Python max() function!

The goal of this exercise is to think about some internals that Python normally takes care of for us. All you need is some variables and if statements!