Google | Onsite | Variation of Coin Change
Anonymous User
696

Given a dollar amount, figure out how many coins it can be broken into (i.e. quarters, dimes, nickels and pennies that make up the full amount).
Example input: $1.21
Example output: [0.25, 0.25, 0.25, 0.25, 0.1, 0.1, 0.01]

Comments (3)