Search
⌘K

Leetcode 1102. Path With Maximum Minimum Value

Given an integer grid where you can move 4-directionally from the top-left to the bottom-right, find a path that maximizes the minimum cell value along the path and return that maximized minimum; this is a maximin path problem typically solved with reachability checks (binary search + BFS/DFS) or a greedy max-heap/Dijkstra-style traversal.

Asked at:

Google

Google


Question Timeline

See when this question was last asked and where, including any notes left by other candidates.

Early October, 2025

Google

Google

Mid-level

Comments

Your account is free and you can post anonymously if you choose.