Day 13 Puzzle
Fix the loop so it sums 1–5.
def solve(): total = 0 for i in range(1,5): total += i return total
Run
🐟 Your code finally loops like it has a purpose.