Skip to content

Instantly share code, notes, and snippets.

@jjuliano
Created June 2, 2019 22:07
Show Gist options
  • Save jjuliano/373f74205f90ed3bdf6850038c9ea2a6 to your computer and use it in GitHub Desktop.
Save jjuliano/373f74205f90ed3bdf6850038c9ea2a6 to your computer and use it in GitHub Desktop.
(1..10).detect {|i| i % 5 == 0 and i % 7 == 0 } #=> nil
(1..100).detect {|i| i % 5 == 0 and i % 7 == 0 } #=> 35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment