일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- programmers
- Python
- 도커
- 그래프
- 아파치 카프카
- 이진탐색
- DP
- 아파치 하둡
- 분산
- 하둡
- 티스토리챌린지
- 문자열
- 아파치 스파크
- docker
- String
- 알고리즘
- 코딩테스트
- 프로그래머스
- heapq
- BFS
- Apache Spark
- leetcode
- apache kafka
- 우선순위큐
- Apache Hadoop
- 파이썬
- 리트코드
- 분산처리
- 오블완
- 카프카
- Today
- Total
목록2025/01/22 (2)
래원
이번 글에서는 Kubernetes에 대해 소개 할 예정이다. 이를 알기 위해서는 먼저 컨테이너 기술과 Docker에 대한 기본적인 지식이 필요하다.따라서, 이전 글들을 읽고 오는 것을 추천한다.https://laewonjeong.tistory.com/category/Docker%20%EB%B0%8F%20Kubernetes/Docker 'Docker 및 Kubernetes/Docker' 카테고리의 글 목록 laewonjeong.tistory.com 큰 목차는 다음과 같다.1. Kubernetes 등장 전 Docker의 문제점2. Container Orchestration3. What is Kubernetes(K8s)?4. Kubernetes Features5. 마무리 Kubernetes 등장 전 Docke..
난이도: Medium문제 설명You are given an integer matrix isWater of size m x n that represents a map of land and water cells.If isWater[i][j] == 0, cell (i, j) is a land cell.If isWater[i][j] == 1, cell (i, j) is a water cell.You must assign each cell a height in a way that follows these rules:The height of each cell must be non-negative.If the cell is a water cell, its height must be 0.Any two adjacent ..