LeetCodeFind Words Containing CharacterFind Words Containing CharacterEasyArrayStringSolution export function findWordsContaining(words: string[], x: string): number[] { const answer: number[] = []; words.forEach((word, i) => { if (word.includes(x)) { answer.push(i); } }); return answer; }LeetCodeFind Words Containing Characterhttps://leetcode.com/problems/find-words-containing-character