leetcode 64 Minimum Path Sum

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 1:
1 | [[1,3,1], |
Given the above grid map, return
1 | 7 |
. Because the path 1→3→1→1→1 minimizes the sum.
1 | class Solution { |
- 这种情况下,不需要使用DP数组。使用DP数组的好处就是能够不改变Grid中的内容。