This file contains the multiples of 5 between 5 and 955, inclusive. One of the multiples of 5 is missing though.
Which number is missing?
Click here to open the file.
Details and assumptions
File may contain duplicate numbers.
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
The answer is 335 .
This solution uses two loops: the first creates a lookup table of the numbers in the file, and the second loop iterates through the multiples of 5 to check if they are in the lookup table. In the below python code, any multiples of 5 that are missing are printed out.