일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Kubernetes
- Apache Spark
- 아파치 카프카
- 아파치 하둡
- Apache Hadoop
- docker
- 우선순위큐
- Python
- 이진탐색
- programmers
- 프로그래머스
- 오블완
- 리트코드
- 파이썬
- apache kafka
- 알고리즘
- 아파치 스파크
- leetcode
- String
- 분산
- 그래프
- 문자열
- 쿠버네티스
- 티스토리챌린지
- heapq
- DP
- 도커
- BFS
- 코딩테스트
- 분산처리
- Today
- Total
목록2025/02/11 (2)
래원
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/10FB8/btsMe4IztZm/g7IhzAEd5a12fnoYCnU9q0/img.png)
최근에는 대부분의 기업에서 CI/CD를 개발 프로세스로 사용하고 CI/CD 개발 환경에서 일을 하고 있다. 이번 글에서는 이러한 CI/CD가 무엇인지 정리하려고 한다. 본 글의 목차는 다음과 같다.1. What is CI/CD?2. CI/CD를 사용하는 이유?3. CI (Continuous Integration)4. CD (Continuous Deployment/Continuous Delivery)5. CI/CD 파이프라인6. 다양한 CI/CD tools 1. What is CI/CD? CI/CD를 간단하게 설명하면 다음과 같다.개발 단계부터 배포 때까지 단계들을 자동화를 통해서 빠르게 사용자들에게 배포할 수 있도록 만드는 것 따라서 이를 통해 개발 팀이 지속적으로 코드를 통합하고 자동화된 테스트를 ..
![](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..