Return to Snippet

Revision: 19429
at October 23, 2009 13:08 by calebt


Initial Code
int sum = Enumerable.Range(1, 999)
	.Where(i => i % 3 == 0 || i % 5 == 0)
	.Sum();

Initial URL


Initial Description


Initial Title
Project Euler Problem 1

Initial Tags


Initial Language
C#