theshy

博客园 首页 新随笔 联系 订阅 管理

2021年12月18日 #

摘要: 62. 不同路径 class Solution { public int uniquePaths(int m, int n) { int[][] dp = new int[m][n]; dp[0][0] = 1; for (int i = 1; i < m; i++) { dp[i][0] = 1; 阅读全文
posted @ 2021-12-18 23:13 tziSher 阅读(106) 评论(0) 推荐(0) 编辑