Last active
November 24, 2019 15:13
-
-
Save kenzo0107/8b32c9b56bd755b2c0e072d063ce0c0c 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 div_each(r) | |
b = [] | |
p = [10_000, 5_000, 2_000, 1_000, 500, 100, 50, 10, 5, 1] | |
p.each_with_index{|d, index| | |
a, r = r.divmod(d) | |
b << a | |
b << r if p.size - 1 == index | |
} | |
return b | |
end | |
p div_each(123_456) # [12, 0, 1, 1, 0, 4, 1, 0, 1, 1, 0] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment