From fafebcde78526a1eedc4bc57f469c0c8cbbfd4ca Mon Sep 17 00:00:00 2001 From: Philippe Zwietering Date: Sat, 28 Mar 2020 03:30:25 +0100 Subject: [PATCH] Added problem description for future reference --- 1/main.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/1/main.py b/1/main.py index 82d373a..1b35d00 100644 --- a/1/main.py +++ b/1/main.py @@ -1,6 +1,8 @@ import os +# Find the sum of all number that are divisible by either 3 or 5 below 1000 + threes = set() fives = set()