Day 3 Puzzle
Fix the function so that
solve()
returns the maximum number from the list.
def solve(): numbers = [10, 4, 15, 7] return min(numbers)
Run
🎉 Wow. Bold move, ignoring all best practices.