update 0714.买卖股票的最佳时机含手续费:修改markdown语法错误

This commit is contained in:
Yuhao Ju
2022-12-17 16:26:04 +08:00
committed by GitHub
parent f30fc5649d
commit f77fa05df7

View File

@ -217,7 +217,7 @@ class Solution: # 贪心思路
```
### Go
```golang
```go
func maxProfit(prices []int, fee int) int {
var minBuy int = prices[0] //第一天买入
var res int