博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Leetcode] Unique Paths
阅读量:4987 次
发布时间:2019-06-12

本文共 604 字,大约阅读时间需要 2 分钟。

A robot is located at the top-left corner of a m x n grid (marked 'Start' in the diagram below).

The robot can only move either down or right at any point in time. The robot is trying to reach the bottom-right corner of the grid (marked 'Finish' in the diagram below).

How many possible unique paths are there?

Above is a 3 x 7 grid. How many possible unique paths are there?

Note: m and n will be at most 100.

Solution:

1 public class Solution { 2     public int uniquePaths(int m, int n) { 3         int[][] dp=new int[m][n]; 4         for(int i=0;i

 

转载于:https://www.cnblogs.com/Phoebe815/p/4048585.html

你可能感兴趣的文章
Core Data系列六——Custom Migration
查看>>
Katu Puzzle(2-sat)
查看>>
最大子序列系列问题
查看>>
ARC与MRC
查看>>
Android开发之延时执行
查看>>
【1】Django概述
查看>>
openstack (5)-- 部署 Neutron 网络服务
查看>>
2017-2018-1 20155220 《信息安全系统设计基础》第十三周学习总结
查看>>
正则表达式归纳整理
查看>>
JAVA:类的三大特征,抽象类,接口,final关键字<3>
查看>>
洛谷 : P1091 合唱队形 【最长升降】
查看>>
sql 语句写的行列转换
查看>>
细看INNODB数据落盘
查看>>
db2 将逗号分隔数据转换为多值IN列表
查看>>
HTTP协议详解
查看>>
POJ2533-Longest Ordered Subsequence
查看>>
mime中间件
查看>>
面向对象 - 封装/property - 总结
查看>>
4.3 - 并发编程 - 总结练习题
查看>>
Django - Ajax
查看>>