Skip to content

Commit aabcdf6

Browse files
authored
fix: code highlight
1 parent 3f55e3c commit aabcdf6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

problems/518.coin-change-2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ var change = function(amount, coins) {
154154

155155
Python Code:
156156

157-
```
157+
```python
158158
class Solution:
159159
def change(self, amount: int, coins: List[int]) -> int:
160160
dp = [0] * (amount + 1)

0 commit comments

Comments
 (0)