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' 카테고리의 다른 글
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 |