Day 10 Puzzle
Fix the function to correctly sort the list in ascending order.
def solve(): numbers = [10, 2, 15, 7] return sorted(numbers, reverse=True)
Run
🎉 You’re not lazy; you’re just aggressively inefficient.