Skip to content

Commit

Permalink
增加C++代码
Browse files Browse the repository at this point in the history
  • Loading branch information
Jasper-Joe committed Jun 21, 2020
1 parent d6ab9bb commit 5909e00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 动态规划系列/编辑距离.md
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ class Node {

[labuladong](https://github.com/labuladong) 提供Java解法代码:

```
```JAVA
int minDistance(String s1, String s2) {
int m = s1.length(), n = s2.length();
int[][] dp = new int[m + 1][n + 1];
Expand Down

0 comments on commit 5909e00

Please sign in to comment.