-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathalgorithm.js
57 lines (49 loc) · 1.6 KB
/
algorithm.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
import pkg from 'word-graphs';
import fs from 'fs';
const {MinimalWordGraph, QueryBuilder} = pkg;
function main() {
let mwg = new MinimalWordGraph();
let data;
try {
data = fs.readFileSync('./dictionary/dictionary.txt', 'utf8');
data.split(/\r?\n/).forEach(line=> {
mwg.add(line)
})
mwg.makeImmutable();
} catch (err) {
console.error(err);
}
checkWords("xyzemnze", "", mwg)
}
function checkWords(scrabble, word, dictionary){
if(dictionary.lookup(word))
console.log(word);
const availableNext = checkNext(word,dictionary)
const nextLetter = scrabble.split('').filter((value)=>{
return availableNext.includes(value);
}).filter((value,index,self)=>{
return self.indexOf(value) === index
}).sort()
nextLetter.forEach((element)=>{
let smallerScrabble = scrabble.split('');
smallerScrabble.splice(
smallerScrabble.indexOf(element),1
)
checkWords(smallerScrabble.join(''), word+element, dictionary)
// console.log(scrabble.split('').filter((letter)=>{
// return letter != element
// }).join(""), word + element);
})
}
function checkNext(word, dictionary){
if(word === ""){
return ['a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z']
}
return dictionary.startsWith(word).map((element)=>{
return element[word.length]
}).filter((value,index,self)=>{
if(value != undefined)
return self.indexOf(value) === index
}).sort()
}
main();