Skip to content

Instantly share code, notes, and snippets.

@hyfather
Created November 13, 2011 20:34
Show Gist options
  • Save hyfather/1362639 to your computer and use it in GitHub Desktop.
Save hyfather/1362639 to your computer and use it in GitHub Desktop.
My solution to problem #1 on projecteuler.net
p [1..999].select{|e| e%3 == 0 || e%5 == 0}.inject(:+)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment