Skip to content

Instantly share code, notes, and snippets.

@LVMBDV
Last active February 23, 2018 17:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LVMBDV/f9531309a62612fe8f6c4c5e99ecde93 to your computer and use it in GitHub Desktop.
Save LVMBDV/f9531309a62612fe8f6c4c5e99ecde93 to your computer and use it in GitHub Desktop.
sum = 0
(1..1000).each { |number|
if (number.divisible_by? 3) || (number.divisible_by? 5)
sum += number
end
}
puts sum
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment