Chapter 7: Problem 16
How do you find the lowest and highest values in a list?
Short Answer
Expert verified
Answer: To find the lowest and highest values in a given list, follow these steps:
1. Understand the problem: Compare each element in the list with the current highest and lowest values, updating them accordingly.
2. Define the initial lowest and highest values: Set the initial lowest and highest values to the first element in the list.
3. Iterate through the list: Use a loop to iterate through each element, starting from the second element.
4. Compare each element: Update the lowest and highest values based on the comparisons made during_each iteration.
5. Return the lowest and highest values: Once the entire list has been iterated through, return the final lowest and highest values.