Skip to content

Instantly share code, notes, and snippets.

@gjcourt
Created July 16, 2019 23:31
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 gjcourt/cade347604b9a1663baca1a6f424002d to your computer and use it in GitHub Desktop.
Save gjcourt/cade347604b9a1663baca1a6f424002d to your computer and use it in GitHub Desktop.
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