> For the complete documentation index, see [llms.txt](https://jaywin.gitbook.io/leetcode/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://jaywin.gitbook.io/leetcode/solutions/0562-longest-line-of-consecutive-one-in-matrix.md).

# 0562. Longest Line of Consecutive One in Matrix

<https://leetcode.com/problems/longest-line-of-consecutive-one-in-matrix>

## Description

Given an `m x n` binary matrix `mat`, return *the length of the longest line of consecutive one in the matrix*.

The line could be horizontal, vertical, diagonal, or anti-diagonal.

**Example 1:**

![](https://assets.leetcode.com/uploads/2021/04/24/long1-grid.jpg)

```
**Input:** mat = [[0,1,1,0],[0,1,1,0],[0,0,0,1]]
**Output:** 3
```

**Example 2:**

![](https://assets.leetcode.com/uploads/2021/04/24/long2-grid.jpg)

```
**Input:** mat = [[1,1,1,1],[0,1,1,0],[0,0,0,1]]
**Output:** 4
```

**Constraints:**

* `m == mat.length`
* `n == mat[i].length`
* `1 <= m, n <= 104`
* `1 <= m * n <= 104`
* `mat[i][j]` is either `0` or `1`.

## ac

```java
```
