Skip to content

Commit af72388

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 4526deb commit af72388

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

greedy_methods/minimum_coin_change.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -119,4 +119,4 @@ def find_minimum_change(denominations: list[int], value: int) -> list[int]:
119119
else:
120120
print(f"Following is minimal change for {value}: ")
121121
answer = find_minimum_change(denominations, value)
122-
print(" ".join(map(str, answer))) # Optimized printing format
122+
print(" ".join(map(str, answer))) # Optimized printing format

0 commit comments

Comments
 (0)