mirror of
https://github.com/TheAlgorithms/Python.git
synced 2026-03-13 09:50:19 +08:00
refactor: Replace list() and dict() calls with literals (#7198)
This commit is contained in:
@@ -74,7 +74,7 @@ def find_minimum_change(denominations: list[int], value: str) -> list[int]:
|
||||
# Driver Code
|
||||
if __name__ == "__main__":
|
||||
|
||||
denominations = list()
|
||||
denominations = []
|
||||
value = "0"
|
||||
|
||||
if (
|
||||
|
||||
Reference in New Issue
Block a user