Skip to content

Tag: optimization

find sum of multiples 3 and 5, JS

I’m given a number and I need to find the sum of the multiples of 3 and 5 below the number. For example: 20 => 78 = 3 + 5 + 6 + 9 + 10 + 12 + 15 + 18 My code works, but not for numbers greater than 1,000,000 (I tested it for 100,000 – it gives