Largest Number 🟢
Contents
Largest Number 🟢#
Write functions that returns:
the largest number of 3;
the largest in a list of any size.
Warning
Please don’t use the max()
function to solve the problem.
Tip
You can use the max()
function to test if your function is returning the correct value.
Tip
You can use the random.randint()
external function to sort random values to test your function.