Minimum Path Sum
Description
Given a m x n grid filled with non-negative numbers, find a path from top left to bottom right which minimizes the sum of all numbers along its path.
Note: You can only move either down or right at any point in time.
Example:
Solution
Let dp[i, j]
be the minimum path sum from the top-left to the grid at row i
and column j
. Then dp[i, j] = min(dp[i-1, j], dp[i, j-1]) + grid[i][j]
.
Last updated