Unique Paths

Medium

📝 Description

Count unique paths from top-left to bottom-right of mxn grid

Input Format

m and n dimensions

Output Format

Number of paths

Constraints

1 ≤ m, n ≤ 100

🔍 Sample Input

3
7
            

✅ Sample Output

28
            

Code Editor

Please login to run and submit code.

Shortcuts: Ctrl+Enter to submit, Ctrl+Shift+R to run