일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 코딩테스트
- BFS
- 파이썬
- 문자열
- 프로그래머스
- Apache Hadoop
- 리트코드
- 오블완
- 카프카
- Apache Spark
- 아파치 카프카
- 도커
- DP
- 이진탐색
- 아파치 스파크
- String
- heapq
- leetcode
- 분산
- 알고리즘
- 그래프
- docker
- 티스토리챌린지
- 하둡
- apache kafka
- Today
- Total
목록2025/01/21 (2)
래원
이번 글에서는 Docker Hub에 대해 소개 할 예정이다. 큰 목차는 다음과 같다.1. What is Docker Hub?2. Docker Hub 회원가입3. Docker Login4. Docker Push5. Docker Pull6. 마무리 What is Docker Hub? Docker Hub는 다음과 같다.Docker image를 저장하고 공유할 수 있는 클라우드 기반의 저장소 서비스 이는 Docker image를 저장, 관리, 공유할 수 있는 가장 대표적인 플랫폼으로 널리 사용되고 있다. 주요 기능은 다음과 같다. 1. 개발자가 생성한 Docker image를 저장할 수 있는 중앙 저장소를 제공하기 때문에 저장된 image는 언제든지 다운로드받아 사용할 수 있다.2. 다른 사람들과 공유하거나..
난이도: Medium 문제 설명You are given a 0-indexed 2D array grid of size 2 x n, where grid[r][c] represents the number of points at position (r, c) on the matrix. Two robots are playing a game on this matrix. Both robots initially start at (0, 0) and want to reach (1, n-1). Each robot may only move to the right ((r, c) to (r, c + 1)) or down ((r, c) to (r + 1, c)). At the start of the game, the first ro..