Project Euler, Problem 1 (PLT Scheme)
Nov. 21st, 2010 12:54 amThis is the first in a series of posts about attempting Project Euler in PLT Scheme. The posting schedule is, for the most part, every Friday. For more information, see the introductory post.
The first problem on Project Euler is relatively simple:
( See solution. )
The first problem on Project Euler is relatively simple:
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.— Project Euler
Find the sum of all the multiples of 3 or 5 below 1000.
( See solution. )