https://leetcode.com/problems/longest-line-of-consecutive-one-in-matrix
Given an m x n binary matrix mat, return the length of the longest line of consecutive one in the matrix.
m x n
mat
The line could be horizontal, vertical, diagonal, or anti-diagonal.
Example 1:
Example 2:
Constraints:
m == mat.length
n == mat[i].length
1 <= m, n <= 104
1 <= m * n <= 104
mat[i][j] is either 0 or 1.
mat[i][j]
0
1
Last updated 4 years ago
**Input:** mat = [[0,1,1,0],[0,1,1,0],[0,0,0,1]] **Output:** 3
**Input:** mat = [[1,1,1,1],[0,1,1,0],[0,0,0,1]] **Output:** 4