find_max(nums) that returns the largest value in a non-empty list nums, found via a for loop (do not use the built-in max()).find_max([3, 7, 2, 9, 4])
9
9 is the largest value.
find_max([-5, -1, -10])
-1
Largest of the negative numbers.
Initialize your running maximum to the first element.
Compare each subsequent element and update if it is larger.