美文网首页
62. 不同路径

62. 不同路径

作者: 小小尧 | 来源:发表于2019-06-01 08:52 被阅读0次
    62. 不同路径
    class Solution(object):
        def uniquePaths(self, m, n):
            """
            :type m: int
            :type n: int
            :rtype: int
            这个题其实可以用排列组合的方式来做。这其实是最开始想到的方法。
            组合数公式:c(m,n) = m! / (n! * (m - n)!)
            python代码就比较凶残了,一行代码搞定:
            """
            return int(math.factorial(m + n - 2) / math.factorial(m -1) / math.factorial(n-1))
    

    相关文章

      网友评论

          本文标题:62. 不同路径

          本文链接:https://www.haomeiwen.com/subject/dtlotctx.html