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
| public class UF | |
| { | |
| public int[] id { get; set; } | |
| public int[] sz { get; set; } | |
| public int cnt { get; set; } | |
| public UF(int N) | |
| { | |
| cnt = N; |
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 makeChange(price): | |
| ... | |
| end | |
| # Examples: | |
| > makeChange(0.50) | |
| < 2 Quarters | |
| > makeChange(0.45) | |
| < 2 Quarters, 1 Nickel |