Day 15 Puzzle
Fix the function so it returns the max of the list.
def solve(): nums = [3,9,2,8] m = 0 for n in nums: if n < m: m = n return m
Run
š Big ādidnāt read the error messageā vibes. Acceptable.