更正了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

@@ -165,7 +165,7 @@ public:
## 其他语言版本
### Java
Java:
```java
// 版本一: 三维 dp数组
@@ -252,7 +252,8 @@ class Solution {
}
```
### Python
Python:
版本一
```python
@@ -285,7 +286,8 @@ class Solution:
dp[j] = max(dp[j],dp[j-1]+prices[i])
return dp[2*k]
```
### Go
Go:
版本一:
```go
@@ -357,7 +359,7 @@ func max(a,b int)int{
}
```
### Javascript
Javascript:
```javascript
// 方法一:动态规划