Skip to content

Instantly share code, notes, and snippets.

@workmad3
Created June 9, 2010 10:31
Show Gist options
  • Select an option

  • Save workmad3/431308 to your computer and use it in GitHub Desktop.

Select an option

Save workmad3/431308 to your computer and use it in GitHub Desktop.
Fixnum.send(:define_method, :mod3or5?) { self % 3 == 0 || self % 5 == 0}
print (1..1000).select(&:mod3or5?).inject(:+)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment