99클럽 3기 코테 스터디 22일차 TIL /[LeetCode] Maximal Rectangle 자바
1. 오늘의 학습 문제 문제 https://leetcode.com/problems/maximal-rectangle/ 85. Maximal RectangleHard10598185Add to ListShareGiven a rows x cols binary matrix filled with 0's and 1's, find the largest rectangle containing only 1's and return its area. Example 1:Input: matrix = [["1","0","1","0","0"],["1","0","1","1","1"],["1","1","1","1","1"],["1","0","0","1","0"]]Output: 6Explanation: The maximal recta..
2024. 8. 12.