Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 프로그래머스
- 하둡
- 딕셔너리
- 아파치 하둡
- 아파치 스파크
- Python
- Data Engineering
- apache kafka
- 분산
- docker
- DP
- 우선순위큐
- Hadoop
- heapq
- 리트코드
- programmers
- 오블완
- 도커
- 문자열
- 아파치 카프카
- 코딩테스트
- 분산처리
- 티스토리챌린지
- Apache Hadoop
- 파이썬
- 이진탐색
- 빅데이터
- leetcode
- 알고리즘
- Apache Spark
Archives
- Today
- Total
래원
[LeetCode] 2185. Counting Words With a Given Prefix (Python) 본문
알고리즘/LeetCode
[LeetCode] 2185. Counting Words With a Given Prefix (Python)
Laewon Jeong 2025. 1. 9. 16:38
난이도: Easy
문제 설명
You are given an array of strings words and a string pref.
Return the number of strings in words that contain pref as a prefix.
A prefix of a string s is any leading contiguous substring of s.
문제 예제
Example 1:
Input: words = ["pay","attention","practice","attend"],pref= "at"
Output: 2
Explanation: The 2 strings that contain "at" as a prefix are: "attention" and "attend".
Example 2:
Input: words = ["leetcode","win","loops","success"],pref= "code"
Output: 0
Explanation: There are no strings that contain "code" as a prefix.
제한 사항
- 1 <= words.length <= 100
- 1 <= words[i].length, pref.length <= 100
- words[i] and pref consist of lowercase English letters.
Solution(솔루션)
class Solution:
def prefixCount(self, words: List[str], pref: str) -> int:
answer = 0
for word in words:
if word.startswith(pref):
answer += 1
return answer
요즘 계속 Easy 문제만 daily question으로 내는 것 같다...
이 문제는 startswith를 사용해 해결했다. words의 모든 요소에 대해서 word.startswith(pref)를 하고 이것이 True를 반환한다면 answer +1 해주었다.
마지막에는 answer를 return 하고 정답을 맞출 수 있었다.
문제: 2185. Counting Words With a Given Prefix
깃허브: github
'알고리즘 > LeetCode' 카테고리의 다른 글
[LeetCode] 916. Word Subsets (Python) (0) | 2025.01.10 |
---|---|
[LeetCode] 3042. Count Prefix and Suffix Pairs I (Python) (1) | 2025.01.08 |
[LeetCode] 1408. String Matching in an Array (Python) (0) | 2025.01.07 |
[LeetCode] 1769. Minimum Number of Operations to Move All Balls to Each Box (Python) (0) | 2025.01.06 |
[LeetCode] 2381. Shifting Letters II (Python) (0) | 2025.01.05 |