Skip to content

Commit c80e003

Browse files
Update algorithms/dynamic_programming/coin_change/README.md
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
1 parent bf436bf commit c80e003

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • algorithms/dynamic_programming/coin_change

algorithms/dynamic_programming/coin_change/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ Min(total)= -1, for n=0
7171

7272
> Recursive tree for finding minimum number of coins for the total 5 with the coins [1,2,3]
7373
74-
### Step by Step solution construction
74+
### Step-by-step solution construction
7575

7676
The idea is to solve the problem using the top-down technique of dynamic programming. If the required total is less than
7777
the number that’s being evaluated, the algorithm doesn’t make any more recursive calls. Moreover, the recursive tree

0 commit comments

Comments
 (0)