Problem 1 of project Euler solved using three separate approaches in Python3. Once using iteration over all integers 0-1000, once using iteration over only multiples of 3 and 5, and once using ...
CodeWars exercise done in Python. First exercise I did after the Welcome exercise. Details from CodeWars Exercise: If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5 ...