Skip to content

Commit 8a32b5c

Browse files
committed
322
1 parent 5aa6700 commit 8a32b5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

coin-change/jeldo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
class Solution:
2-
# O(n*m), n=len(coins), m=amount
2+
# O(n*m), n = len(coins), m = amount
33
def coinChange(self, coins: list[int], amount: int) -> int:
44
dp = [amount+1] * (amount+1)
55
dp[0] = 0

0 commit comments

Comments
 (0)