Skip to content

Commit de141a7

Browse files
committed
Create: 0472-concatenated-words
1 parent ee7a3bc commit de141a7

4 files changed

+128
-0
lines changed

go/0472-concatenated-words.go

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
func findAllConcatenatedWordsInADict(words []string) []string {
2+
wordSet := initWordSet(words)
3+
res := []string{}
4+
5+
var dfs func(word string) bool
6+
7+
dfs = func(word string) bool {
8+
for i := 1; i < len(word); i++ {
9+
prefix, suffix := word[:i], word[i:]
10+
if (wordSet[prefix] && wordSet[suffix]) || wordSet[prefix] && dfs(suffix) {
11+
return true
12+
}
13+
}
14+
15+
return false
16+
}
17+
18+
for _, w := range words {
19+
if dfs(w) {
20+
res = append(res, w)
21+
}
22+
}
23+
24+
return res
25+
}
26+
27+
func initWordSet(words []string) map[string]bool {
28+
wordSet := make(map[string]bool, len(words))
29+
30+
for _, word := range words {
31+
wordSet[word] = true
32+
}
33+
34+
return wordSet
35+
}

javascript/0472-concatenated-words.js

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
/**
2+
* @param {string[]} words
3+
* @return {string[]}
4+
*/
5+
var findAllConcatenatedWordsInADict = function (words) {
6+
let wordSet = new Set(words);
7+
let res = [];
8+
9+
for (let w of words) {
10+
if (dfs(w)) {
11+
res.push(w);
12+
}
13+
}
14+
15+
return res;
16+
17+
/**
18+
*
19+
* @param {string} word
20+
* @returns {boolean}
21+
*/
22+
function dfs(word) {
23+
for (let i = 1; i < word.length; i++) {
24+
let prefix = word.slice(0, i);
25+
let suffix = word.slice(i, word.length);
26+
27+
if (
28+
(wordSet.has(prefix) && wordSet.has(suffix)) ||
29+
(wordSet.has(prefix) && dfs(suffix))
30+
) {
31+
return true;
32+
}
33+
}
34+
return false;
35+
}
36+
};

rust/0472-concatenated-words.rs

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
use std::collections::HashSet;
2+
use std::iter::FromIterator;
3+
4+
impl Solution {
5+
pub fn find_all_concatenated_words_in_a_dict(words: Vec<String>) -> Vec<String> {
6+
let word_set: HashSet<String> = HashSet::from_iter(words.iter().cloned());
7+
let mut res = vec![];
8+
9+
for w in words {
10+
if Self::dfs(&w, &word_set) {
11+
res.push(w);
12+
}
13+
}
14+
15+
res
16+
}
17+
18+
pub fn dfs(word: &str, word_set: &HashSet<String>) -> bool {
19+
for i in 1..word.len() {
20+
let (prefix, suffix) = (&word[..i], &word[i..]);
21+
if (word_set.contains(prefix) && word_set.contains(suffix))
22+
|| (word_set.contains(prefix) && Self::dfs(suffix, word_set))
23+
{
24+
return true;
25+
}
26+
}
27+
false
28+
}
29+
}

typescript/0472-concatenated-words.ts

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
function findAllConcatenatedWordsInADict(words: string[]): string[] {
2+
let wordSet = new Set(words);
3+
let res: string[] = [];
4+
5+
for (let w of words) {
6+
if (dfs(w)) {
7+
res.push(w);
8+
}
9+
}
10+
11+
return res;
12+
13+
function dfs(word: string): boolean {
14+
for (let i = 1; i < word.length; i++) {
15+
let prefix = word.slice(0, i);
16+
let suffix = word.slice(i);
17+
18+
if (
19+
(wordSet.has(prefix) && wordSet.has(suffix)) ||
20+
(wordSet.has(prefix) && dfs(suffix))
21+
) {
22+
return true;
23+
}
24+
}
25+
26+
return false;
27+
}
28+
}

0 commit comments

Comments
 (0)