Consistency formatting

This commit is contained in:
2021-06-05 15:03:42 +02:00
parent c793c7e9dd
commit 5c7cec373c
2 changed files with 2 additions and 2 deletions

View File

@@ -20,8 +20,8 @@ def compute():
Find the sum of all the multiples of 3 or 5 below 1000.
"""
ans = sum(x for x in range(1000) if (x % 3 == 0 or x % 5 == 0))
return ans