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 |
Tags
- 리트코드
- 문자열
- docker
- 아파치 스파크
- 알고리즘
- Kubernetes
- 우선순위큐
- Apache Spark
- 분산처리
- BFS
- Python
- String
- 이진탐색
- 코딩테스트
- 쿠버네티스
- programmers
- DP
- leetcode
- 아파치 하둡
- 오블완
- 그래프
- 파이썬
- apache kafka
- heapq
- 도커
- Apache Hadoop
- 분산
- 티스토리챌린지
- 아파치 카프카
- 프로그래머스
Archives
- Today
- Total
목록2025/02/11 (1)
래원
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/bpL1E4/btsMeSHcafu/ySJLm8fqBEkTuo3ldO9Zm1/img.png)
난이도: Medium문제 설명 Given two strings s and part, perform the following operation on s until all occurrences of the substring part are removed:Find the leftmost occurrence of the substring part and remove it from s.Return s after removing all occurrences of part.A substring is a contiguous sequence of characters in a string. 문제 예제Example 1:Input: s = "daabcbaabcbc", part = "abc"Output: "dab"Explana..
알고리즘/LeetCode
2025. 2. 11. 11:25