Kengoc2018
Địt Bùng Đạo Tổ

vãi Lồn, dùng DP như mảngcode python dùng Dp theo suggest của mày, thanks nhé
from collections import deque
class Solution:
def uniquePaths(self, m: int, n: int) -> int:
dp = [[0 for _ in range(n+1)] for _ in range(m + 1)]
dp[1][1] = 1
for i in range(1, m + 1):
for j in range(1, n + 1):
if (i == 1 and j == 1) == False:
dp[i][j] = dp[i-1][j] + dp[i][j-1]
return dp[m][n]