85. Maximal Rectangle
Hard
Input: matrix = [["1","0","1","0","0"],["1","0","1","1","1"],["1","1","1","1","1"],["1","0","0","1","0"]]
Output: 6
Explanation: The maximal rectangle is shown in the above picture.Input: matrix = [["0"]]
Output: 0Input: matrix = [["1"]]
Output: 1Last updated
