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 coin_exchange_greedy(amount: int, coins: List[int]) -> Tuple[int, List[int]]: | |
""" | |
Menyelesaikan Coin Exchange Problem menggunakan algoritma Greedy. | |
Parameters: | |
----------- | |
amount : int | |
Jumlah uang yang akan ditukar | |
coins : List[int] | |
List denominasi koin yang tersedia |