From d4d24a610a66bec4f2232a6c1e6460054c46463e Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Sun, 16 Feb 2025 09:44:03 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- greedy_methods/minimum_coin_change.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/greedy_methods/minimum_coin_change.py b/greedy_methods/minimum_coin_change.py index c6e4a28e8..762f0c089 100644 --- a/greedy_methods/minimum_coin_change.py +++ b/greedy_methods/minimum_coin_change.py @@ -1,5 +1,6 @@ import sys from doctest import testmod + """ Test cases: Do you want to enter your denominations ? (Y/N) :N @@ -40,6 +41,8 @@ Enter the change you want to make: 456 Following is minimal change for 456 : 100 100 100 100 5 5 5 5 5 5 5 5 5 5 5 1 """ + + def find_minimum_change(denominations: list[int], value: int) -> list[int]: """ Find the minimum change from the given denominations and value.