반응형
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
*더 나은 내용을 위한 지적, 조언은 언제나 환영합니다.
'Algorithm > String' 카테고리의 다른 글
(Python3) - LeetCode (Medium) : 1400. Construct K Palindrome Strings (0) | 2025.01.11 |
---|---|
(Python3) - LeetCode (Medium) : 1930. Unique Length-3 Palindromic Subsequences (0) | 2025.01.04 |
(Python3) - LeetCode (Medium) : 2337. Move Pieces to Obtain a String (1) | 2024.12.05 |
(Python3) - 프로그래머스(코딩테스트 입문) : 잘라서 배열로 저장하기 (0) | 2024.11.03 |
(Python3) - 프로그래머스(코딩테스트 입문) : A로 B 만들기 (0) | 2024.10.31 |