Your question is Largest Among Three Numbers. Start with the requirements on the right.
Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.
As part of a Revature coding assessment, write a function that returns the largest value among three integers. The values may be positive, negative, or equal.
Implement largest_of_three(a, b, c):
a, b, and c.Do not sort the values, since only the maximum is required.
def largest_of_three(a, b, c):