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
- dataframe
- 20164번
- IOS도전
- leetcode329
- 329
- 백준
- 사다리조작
- iOS앱개발
- IOS개발기
- 리트코드
- leetcode
- IOS도전기
- 릿코드
- 프로그래머스
- 백죽
- IOS입문
- stack문제
- 센서
- 2812번
- iOS개발
- 2212번
- 329번
- 홀수홀릭호석
- 크게만들기
- LongestIncreasingPathinaMatrix
- 2212
- 백준문제
- 15684
- BOJ
- 백준알고리즘
Archives
- Today
- Total
목록leetcode329 (1)
알고리즘 풀어주는 블로그
LEETCODE 329 : Longest Increasing Path in a Matrix - python
Q. 문제 ttps://leetcode.com/problems/longest-increasing-path-in-a-matrix/ Longest Increasing Path in a Matrix - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com A. 풀이 class Solution: def longestIncreasingPath(self, matrix: List[List[int]]) -> int: dx = [0, 0, 1, -1] dy = [1, -1, 0, 0]..
알고리즘 문제/leetcode
2021. 5. 4. 00:10