-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcleave.js
61 lines (60 loc) · 848 Bytes
/
cleave.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
function cleave(str, words) {
let arr = [],
tmp = '';
while (str.length > 0) {
tmp = '';
words.forEach((x) => {
if (str.startsWith(x)) tmp = x;
});
if (!tmp.length) return 'Cleaving stalled: Word not found';
if (arr[arr.length - 1] == 'after') tmp = 'a';
arr.push(tmp);
str = str.slice(tmp.length);
}
return arr.join(' ');
}
console.log(
cleave('solongandthanksforallthefish', [
'a',
'after',
'all',
'an',
'and',
'are',
'as',
'by',
'continued',
'deadlines',
'doubly',
'fish',
'for',
'go',
'happen',
'happened',
'i',
'illusion',
'is',
'long',
'love',
'lunchtime',
'make',
'moment',
'noise',
'nothing',
'of',
'or',
'people',
'problem',
'second',
'so',
'summarize',
'summary',
'thanks',
'the',
'then',
'they',
'time',
'to',
'whooshing',
])
);