A long time ago I decided to do a couple of posts about project euler. I find the problems to be great excersize. It was not before I began to look into node.js though, that I began writing code for the problems for the purpose of publishing it.
The first problem on the list is very simple. "Find the sum of all the multiples of 3 or 5 below 1000". The solution, then, must be to find all numbers that are multiples of 3 and 5, and then adding those...
This solution is pretty simple. You (probably) need nodejs to run the code.
