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
- 코딩테스트
- 도커
- apache kafka
- 분산처리
- programmers
- 티스토리챌린지
- DP
- 이진탐색
- 아파치 하둡
- 우선순위큐
- 파이썬
- Hadoop
- 아파치 카프카
- 오블완
- 아파치 스파크
- 빅데이터
- docker
- Apache Hadoop
- Python
- 알고리즘
- heapq
- leetcode
- 문자열
- 리트코드
- 딕셔너리
- 프로그래머스
- Data Engineering
- Apache Spark
- 하둡
- 분산
Archives
- Today
- Total
목록2025/01/09 (1)
래원
[LeetCode] 2185. Counting Words With a Given Prefix (Python)
난이도: 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: 2Explanation: The 2 strings that contain "at" as a prefix are: "attention" and "attend".Example 2:Inpu..
알고리즘/LeetCode
2025. 1. 9. 16:38