From 8787a094c09ea144ad151912a3e7773b7cfbc9a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=E1=BB=93=20V=C4=83n=20H=C3=B2a?= <56647826+hovanhoa@users.noreply.github.com> Date: Mon, 30 Dec 2024 11:13:32 +0700 Subject: [PATCH] Create README - LeetHub --- 0062-unique-paths/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/0062-unique-paths/README.md b/0062-unique-paths/README.md index b676820..c2aa215 100644 --- a/0062-unique-paths/README.md +++ b/0062-unique-paths/README.md @@ -1,4 +1,4 @@ -

62. Unique Paths

Medium


There is a robot on an m x n grid. The robot is initially located at the top-left corner (i.e., grid[0][0]). The robot tries to move to the bottom-right corner (i.e., grid[m - 1][n - 1]). The robot can only move either down or right at any point in time.

+

62. Unique Paths

Medium


There is a robot on an m x n grid. The robot is initially located at the top-left corner (i.e., grid[0][0]). The robot tries to move to the bottom-right corner (i.e., grid[m - 1][n - 1]). The robot can only move either down or right at any point in time.

Given the two integers m and n, return the number of possible unique paths that the robot can take to reach the bottom-right corner.