Skip to content

Instantly share code, notes, and snippets.

@marclerodrigues
Last active March 12, 2017 03:52
Show Gist options
  • Save marclerodrigues/31ef7d1507d8c829ed413d816d050716 to your computer and use it in GitHub Desktop.
Save marclerodrigues/31ef7d1507d8c829ed413d816d050716 to your computer and use it in GitHub Desktop.
Submission test for Pegcar
(1..100).map do |n|
n
"Pegcar" if remainder_zero?(n, 35)
"car" if remainder_zero?(n, 7)
"Peg" if remainder_zero?(n, 5)
end
def remainder_zero?(a, b)
a % b == 0
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment