본문 바로가기

Algorithm/String

(Python3) - LeetCode (Easy) : 2185. Counting Words With a Given Prefix

반응형

https://leetcode.com/problems/counting-words-with-a-given-prefix

startswith함수를 사용해본 문제였습니다.

📕 풀이방법

📔 입력 및 초기화

정답 변수 ans를 선언 후 0으로 초기화합니다.

📔 풀이과정

words를 순회하며 각 단어에서 시작이 pref인 경우 ans를 1씩 더해줍니다.

📔 정답 출력 | 반환

ans를 반환합니다.


📕 Code

📔 Python3

class Solution:
    def prefixCount(self, words: List[str], pref: str) -> int:
        ans = 0
        for word in words:
            if word.startswith(pref):
                ans += 1
        return ans

*더 나은 내용을 위한 지적, 조언은 언제나 환영합니다.