Day 9 Puzzle
Fix the function so that it returns the sum of squares of all numbers in the list.
def solve(): numbers = [1, 2, 3, 4] return sum(numbers ** 2 for numbers in numbers)
Run
🎉 Somehow confident, despite the evidence.