Question: Write a short Python function, minmax(data), that takes a sequence of one or more numbers, and returns the smallest and largest numbers, in the form
Write a short Python function, minmax(data), that takes a sequence of one or more numbers, and returns the smallest and largest numbers, in the form of a tuple of length two. Do not use the built-in functions min or max in implementing your solution.
Step by Step Solution
3.36 Rating (159 Votes )
There are 3 Steps involved in it
Keep track of the smallest and largest val... View full answer
Get step-by-step solutions from verified subject matter experts
