일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 오블완
- apache kafka
- 이진탐색
- 코딩테스트
- 티스토리챌린지
- KAFKA
- 리트코드
- heapq
- 분산
- String
- 아파치 카프카
- DP
- Apache Hadoop
- 아파치 하둡
- leetcode
- 알고리즘
- Apache Spark
- Data Engineering
- 하둡
- 분산처리
- programmers
- 우선순위큐
- 도커
- 카프카
- 아파치 스파크
- 프로그래머스
- 문자열
- Python
- docker
- 파이썬
- Today
- Total
목록2025/01/20 (2)
래원
난이도: Medium 문제 설명You are given a 0-indexed integer array arr, and an m x n integer matrix mat. arr and mat both contain all the integers in the range [1, m * n]. Go through each index i in arr starting from index 0 and paint the cell in mat containing the integer arr[i]. Return the smallest index i at which either a row or a column will be completely painted in mat. 문제 예제Example 1:Input: arr = [..
문제 설명Given an m x n integer matrix heightMap representing the height of each unit cell in a 2D elevation map, return the volume of water it can trap after raining. 문제 예제Example 1:Input: heightMap = [[1,4,3,1,3,2],[3,2,1,3,2,4],[2,3,3,2,3,1]]Output: 4Explanation: After the rain, water is trapped between the blocks.We have two small ponds 1 and 3 units trapped.The total volume of water trapped is ..