Concept Flow - max() and min()
Start with a list or values
Call max() or min()
Compare each element
Keep track of current max or min
After all elements checked
Return the max or min value
End
The program takes a list or values, compares each one to find the largest or smallest, then returns that value.