Skip to content

Instantly share code, notes, and snippets.

@aptinio
Created November 5, 2009 03:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aptinio/226698 to your computer and use it in GitHub Desktop.
Save aptinio/226698 to your computer and use it in GitHub Desktop.
Project Euler Problem 10
require 'mathn'
Prime.new.inject(0) { |sum, n|
break(sum) if n >= 2_000_000
sum + n
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment