Day 20 Puzzle
Return the sum of even numbers 1–10.
def solve(): total = 0 for i in range(1,11): if i % 2 == 1: total += i return total
Run
🐟 "You’ve achieved the bare minimum, and I respect that consistency."