Skip to content

Commit 2d0a2b8

Browse files
yanglbmeidoocs
authored andcommitted
style: format code and docs with prettier
1 parent 6512dbf commit 2d0a2b8

File tree

1 file changed

+1
-1
lines changed
  • lcof2/剑指 Offer II 103. 最少的硬币数目

1 file changed

+1
-1
lines changed

lcof2/剑指 Offer II 103. 最少的硬币数目/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ var coinChange = function (coins, amount) {
175175
class Solution {
176176
func coinChange(_ coins: [Int], _ amount: Int) -> Int {
177177
var dp = [Int](repeating: amount + 1, count: amount + 1)
178-
dp[0] = 0
178+
dp[0] = 0
179179

180180
for coin in coins {
181181
if coin > amount { continue }

0 commit comments

Comments
 (0)