Claus Witt

software and web developer

Project Euler Problem One

with 2 comments

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.

Written by Claus Witt

May 29th, 2010 at 7:55 pm

Posted in Development

Tagged with , ,

2 Responses to 'Project Euler Problem One'

Subscribe to comments with RSS or TrackBack to 'Project Euler Problem One'.

  1. [...] Claus Wittsoftware and web developerHomeAbout meProject Euler Problem TwoYesterday I posted my first euler-code. This time we will take a look at problem two, again with the help of some javascript running on [...]

  2. [...] the previous three problems I have posted about, this is written to run on node.js. by Claus Witt June 4, 2010 [...]

Leave a Reply