Created
July 16, 2019 23:31
-
-
Save gjcourt/cade347604b9a1663baca1a6f424002d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def cumulative_remainder(amount, count) | |
(1..count).map do |i| | |
amount * i / count - amount * (i - 1) / count | |
end | |
end | |
puts cumulative_remainder(100, 3) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment