Given a binary matrix filled with 0’s and 1’s, find the largest rectangle containing only 1’s and return its area.
matrix
0
1
Constraints:
rows ====== matrix.length
rows
matrix.length
cols ====== matrix[i].length
cols
matrix[i].length
1≤1 \leq1≤ rows, cols ≤200\leq 200 ...