https://leetcode.com/problems/find-words-containing-character/submissions/1290261832/ 1. 문제 및 접근 들어온 String 배열에서 현재 char의 letter이 있으면 그 인덱스 반환 없음 빈 배열들어온 char와 String은 e다 lowerCase 완탐 ?50글자가 50개 최대 50x50 2500? Constraints:1 1 x is a lowercase English letter.words[i] consists only of lowercase English letters. 2. 풀이 public List findWordsContaining(String[] words, char x) { L..