LC: 286. Walls and Gates
https://leetcode.com/problems/walls-and-gates/
Input: rooms = [[2147483647,-1,0,2147483647],[2147483647,2147483647,2147483647,-1],[2147483647,-1,2147483647,-1],[0,-1,2147483647,2147483647]]
Output: [[3,-1,0,1],[2,2,1,-1],[1,-1,2,-1],[0,-1,3,4]]Input: rooms = [[-1]]
Output: [[-1]]Input: rooms = [[2147483647]]
Output: [[2147483647]]Input: rooms = [[0]]
Output: [[0]]Last updated
