Skip to content

Instantly share code, notes, and snippets.

@nhh
Last active March 16, 2018 17:01
Show Gist options
  • Save nhh/4f4c0a6498308f4401f811168a376b2a to your computer and use it in GitHub Desktop.
Save nhh/4f4c0a6498308f4401f811168a376b2a to your computer and use it in GitHub Desktop.
Best implementation of divisible by
class Integer
def divisible_by?(number)
self % number == 0
end
end
irb(main):054:0> 1.divisible_by? 1
=> true
irb(main):055:0> 1.divisible_by? 2
=> false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment