mirror of
https://github.com/youngyangyang04/leetcode-master.git
synced 2025-07-08 08:50:15 +08:00
@ -364,6 +364,7 @@ function minDistance(word1: string, word2: string): number {
|
||||
|
||||
C:
|
||||
|
||||
|
||||
```c
|
||||
int min(int num1, int num2, int num3) {
|
||||
return num1 > num2 ? (num2 > num3 ? num3 : num2) : (num1 > num3 ? num3 : num1);
|
||||
@ -389,7 +390,5 @@ int minDistance(char * word1, char * word2){
|
||||
}
|
||||
```
|
||||
|
||||
|
||||
|
||||
-----------------------
|
||||
<div align="center"><img src=https://code-thinking.cdn.bcebos.com/pics/01二维码一.jpg width=500> </img></div>
|
||||
|
Reference in New Issue
Block a user