Skip to content

Commit 8e8fc61

Browse files
committed
Runtime: 135 ms (Top 56.56%) | Memory: 46.3 MB (Top 80.04%)
1 parent 7862bd4 commit 8e8fc61

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/algorithms/E/Edit Distance/Edit Distance.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Runtime: 135 ms (Top 56.56%) | Memory: 46.3 MB (Top 80.04%)
12
var minDistance = function(word1, word2) {
23
const m = word1.length;
34
const n = word2.length;
@@ -21,4 +22,4 @@ var minDistance = function(word1, word2) {
2122
}
2223

2324
return dfs();
24-
};
25+
};

0 commit comments

Comments
 (0)