공부/Computers
Leetcode 329 Longest Increasing Path in a Matrix
언제나19
2020. 8. 9. 05:17
329. Longest Increasing Path in a Matrix
https://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
octave:1> A = [1, 1; 0, 1]
A =
1 1
0 1
octave:2> B = [1, 0; 1, 1]
B =
1 0
1 1
의 matrix 곱 combination의 수학적 의미를 찾고 싶었는데, 실패.
https://massivealgorithms.blogspot.com/2019/03/leetcode-780-reaching-points.html
LeetCode 780 - Reaching Points
https://leetcode.com/problems/reaching-points/ A move consists of taking a point (x, y) and transforming it to either (x, x+y) or (x...
massivealgorithms.blogspot.com