LC: 1102. Path With Maximum Minimum Value
https://leetcode.com/problems/path-with-maximum-minimum-value/
Input: grid = [[5,4,5],[1,2,6],[7,4,6]]
Output: 4
Explanation: The path with the maximum score is highlighted in yellow. Input: grid = [[2,2,1,2,2,2],[1,2,2,2,1,2]]
Output: 2Input: grid = [[3,4,6,3,4],[0,2,1,1,7],[8,8,3,2,7],[3,2,4,9,8],[4,1,2,0,0],[4,6,5,4,3]]
Output: 3Last updated


