3 of 4
π Lists π Loops
Write a program that finds the minimum (smallest) number in a list. Do not use the built-in min() function β implement it yourself with a loop.
Example: [7, 2, 9, 1, 5, 3] β minimum is 1
Use a variable to track the smallest value seen so far as you loop through the list.
List: [7, 2, 9, 1, 5, 3]
Minimum: 1