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 | 29 | 30 | 31 |
Tags
- 하둡
- 도커
- Apache Spark
- 알고리즘
- 분산처리
- DP
- 그래프
- apache kafka
- 파이썬
- 코딩테스트
- 오블완
- heapq
- leetcode
- 티스토리챌린지
- 아파치 카프카
- 아파치 스파크
- 문자열
- Apache Hadoop
- 프로그래머스
- 이진탐색
- BFS
- 분산
- 아파치 하둡
- 리트코드
- 우선순위큐
- String
- 카프카
- Python
- docker
- programmers
Archives
- Today
- Total
목록2025/01/31 (1)
래원
[LeetCode] 827. Making A Large Island (Python)
난이도: Hard문제 설명You are given an n x n binary matrix grid. You are allowed to change at most one 0 to be 1. Return the size of the largest island in grid after applying this operation. An island is a 4-directionally connected group of 1s. 문제 예제Example 1:Input: grid = [[1,0],[0,1]] Output: 3 Explanation: Change one 0 to 1 and connect two 1s, then we get an island with area = 3. Example 2:Input: gri..
알고리즘/LeetCode
2025. 1. 31. 20:53