更正了121、122、123、188md格式错误,好心干了坏事,把卡哥格式改了,吓死,赶紧改过来

This commit is contained in:
LiHua
2021-11-24 21:54:22 +08:00
parent 7575cfd431
commit 2517bb6039
4 changed files with 22 additions and 20 deletions

View File

@@ -194,7 +194,7 @@ public:
## 其他语言版本
### Java
Java:
> 贪心法:
@@ -264,7 +264,7 @@ class Solution {
}
```
### Python
Python:
> 贪心法:
```python
@@ -308,7 +308,7 @@ class Solution:
return dp[(length-1) % 2][1]
```
### Go
Go:
```Go
func maxProfit(prices []int) int {
@@ -336,7 +336,7 @@ func max(a,b int)int {
}
```
### JavaScript
JavaScript:
> 动态规划