1
0
Fork 0
mirror of https://gitlab.com/mfocko/CodeWars.git synced 2024-09-19 22:16:57 +02:00
CodeWars/6kyu/multiples_of_3_or_5/solution.hs

8 lines
295 B
Haskell
Raw Normal View History

module MultiplesOf3And5 where
sumOfMultiples :: Integer -> Integer -> Integer
sumOfMultiples n upTo = div ((div (upTo - 1) n) * (n + (upTo - 1 - mod (upTo - 1) n))) 2
solution :: Integer -> Integer
solution number = sumOfMultiples 3 number + sumOfMultiples 5 number - sumOfMultiples 15 number