0750. Number Of Corner Rectangles
https://leetcode.com/problems/number-of-corner-rectangles
Description
Given an m x n integer matrix grid where each entry is only 0 or 1, return the number of corner rectangles.
A corner rectangle is four distinct 1's on the grid that forms an axis-aligned rectangle. Note that only the corners need to have the value 1. Also, all four 1's used must be distinct.
Example 1:

Example 2:

Example 3:

Constraints:
m == grid.lengthn == grid[i].length1 <= m, n <= 200grid[i][j]is either0or1.The number of
1's in the grid is in the range[1, 6000].
ac
Last updated
Was this helpful?