码迷,mamicode.com
首页 > 其他好文 > 详细

[LeetCode] Unique Paths

时间:2014-09-07 14:42:25      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   for   div   sp   log   on   

public class Solution {
    public int uniquePaths(int m, int n) {
        int [][] result = new int[m][n];
        for (int i=0; i<m; i++) {
            for (int j=0; j<n; j++) {
                if (i==0 || j==0) result[i][j] = 1;
                else result[i][j] = result[i][j-1] + result[i-1][j];
            }
        }
        
        return result[m-1][n-1];
    }
}

 

[LeetCode] Unique Paths

标签:style   blog   color   io   for   div   sp   log   on   

原文地址:http://www.cnblogs.com/yuhaos/p/3960344.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!