Skip to content

Commit 37c39ff

Browse files
committed
恢复空格,未识别的最少字符数
1 parent 6985be1 commit 37c39ff

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<title>Document</title>
7+
</head>
8+
<body>
9+
<script>
10+
const respace = (dictionary, sentence) => {
11+
const len = sentence.length;
12+
const dp = new Array(len + 1);
13+
dp[0] = 0;
14+
for (let i = 1; i <= len; i++) {
15+
dp[i] = dp[i - 1] + 1;
16+
for (const word of dictionary) {
17+
// 遍历字典里的单词
18+
if (sentence.substring(i - word.length, i) == word) {
19+
// 截取字典词的长度与字典词比较
20+
dp[i] = Math.min(dp[i], dp[i - word.length]);
21+
}
22+
}
23+
}
24+
return dp[len];
25+
};
26+
// test
27+
var dictionary = ["looked","just","like","her","brother"];
28+
var sentence = "jesslookedjustliketimherbrother";
29+
console.log(respace(dictionary, sentence));
30+
</script>
31+
</body>
32+
</html>

0 commit comments

Comments
 (0)