## 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可## # @param m int整型 # @param n int整型 # @return int整型#classSolution:defuniquePaths(self,m:int,n:int) ->int:# write code herefrom functools import lru_cache@lru_cache(maxsize=None)defdp(i,j):if i == m and j == n:return1if i > m or j > n:return0returndp(i +1, j)+dp(i, j +1)returndp(1, 1)