Amazon Interview Preparation: Project Euler( Problem 1)

Thenjiwe kubheka
2 min readJan 30, 2021

--

When preparing for a Technical interview with one of The Big Tech Companies; Amazon, Google, Facebook, Netflix, Microsoft, it’s vital to practice with resources such as Project Euler.

Project Euler is a series of challenging mathematical and computer programming problems that require more than just mathematical insights to solve.

Now let’s start with our first task, which can be solved using the language of your choice, I will be using Python.

Task 1: Multiples of 3 or 5

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 1000.

Solution:

So the question is asking us to add all the natural numbers(values that are divisible by 3 or 5 and have no remainders).

Our range is 1 to 1000.

Let’s create a variable called sum:

Then create a For loop, and include the range function to count from 0 to 1000.

Then we have our conditional statement that will check for numbers divisible by 3 or 5.

Then we want to increment the sum, which is all the multiples of 3 and 5, from 0 to 1000.

Then lastly we want to print all those numbers.

Our total will be: 233168

Sign up to discover human stories that deepen your understanding of the world.

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

--

--

Thenjiwe kubheka
Thenjiwe kubheka

Written by Thenjiwe kubheka

Software Engineer from South Africa, who loves mathematics. Fascinated by machines, plays around with a lot of data, constantly researching AI.

No responses yet

Write a response