leetcode-62. 不同路径

题目

https://leetcode-cn.com/problems/unique-paths/description/

代码

动态规划二位数组入门问题

/*
 * @lc app=leetcode.cn id=62 lang=java
 *
 * [62] 不同路径
 */

// @lc code=start
class Solution {
    public int uniquePaths(int m, int n) {
        if(m<=0||n<=0){
            return 0;
        }

        int [][]dp=new int[m][n];

        for(int i=0;i

你可能感兴趣的:(leetcode-62. 不同路径)