LC: 302. Smallest Rectangle Enclosing Black Pixels
https://leetcode.com/problems/smallest-rectangle-enclosing-black-pixels/
Input: image = [["0","0","1","0"],["0","1","1","0"],["0","1","0","0"]], x = 0, y = 2
Output: 6Input: image = [["1"]], x = 0, y = 0
Output: 1Last updated