본문 바로가기
코딩 테스트/leetcode

Find Words Containing Character

by ornni 2024. 6. 21.
728x90
반응형

첫번째 코드

 

만약 단어 안에 x가 있으면 해당 인덱스를 정답에 포함하는 방법을 이용한다.

 

class Solution:
    def findWordsContaining(self, words: List[str], x: str) -> List[int]:
        answer = []
        index = 0

        for i in words:
            if x in i:
                answer.append(index)
            index += 1
        
        return answer

 

통과!


링크

https://github.com/ornni/leetcode/tree/main/2942-find-words-containing-character

 

leetcode/2942-find-words-containing-character at main · ornni/leetcode

Collection of LeetCode questions to ace the coding interview! - Created using [LeetHub v3](https://github.com/raphaelheinz/LeetHub-3.0) - ornni/leetcode

github.com

 

반응형

'코딩 테스트 > leetcode' 카테고리의 다른 글

Divisor Game  (0) 2024.06.24
Split a String in Balanced Strings  (0) 2024.06.22
Count Negative Numbers in a Sorted Matrix  (0) 2024.06.20
Count Items Matching a Rule  (0) 2024.06.19
Find The Original Array of Prefix Xor  (0) 2024.06.18