Concept Flow - np.min() and np.max()
Start with array
Call np.min()
Scan all elements
Find smallest value
Return min value
Call np.max()
Scan all elements
Find largest value
Return max value
np.min() scans the array to find the smallest number and returns it. np.max() scans to find the largest number and returns it.