Problem Statement:
Given an m x n integer matrix, write a function to find the length of the longest increasing path in the matrix. From each cell, you can move in four directions: left, right, up, or down. You may not move diagonally or move outside the boundary of the matrix. You may only move to a cell with a strictly greater value than the current cell.
Requirements:
Input/Output Example:
For example, given the matrix:
[
[9, 9, 4],
[6, 6, 8],
[2, 1, 1]
]
The longest increasing path is [1, 2, 6, 9]
(or any other valid path with the same values ordered increasingly), so the function should return 4
.
Note:
Good luck!