From c3b8c518220b47172982f653e74a4cc53b93bfc1 Mon Sep 17 00:00:00 2001 From: Sanders Lin <45224617+SandersLin@users.noreply.github.com> Date: Wed, 5 Dec 2018 21:25:46 +0800 Subject: [PATCH] Project Euler problem 1 pyhtonic solution (#628) --- project_euler/problem_01/sol5.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 project_euler/problem_01/sol5.py diff --git a/project_euler/problem_01/sol5.py b/project_euler/problem_01/sol5.py new file mode 100644 index 000000000..e261cc8fc --- /dev/null +++ b/project_euler/problem_01/sol5.py @@ -0,0 +1,16 @@ +''' +Problem Statement: +If we list all the natural numbers below 10 that are multiples of 3 or 5, +we get 3,5,6 and 9. The sum of these multiples is 23. +Find the sum of all the multiples of 3 or 5 below N. +''' +from __future__ import print_function +try: + input = raw_input #python3 +except NameError: + pass #python 2 + +"""A straightforward pythonic solution using list comprehension""" +n = int(input().strip()) +print(sum([i for i in range(n) if i%3==0 or i%5==0])) +