herrDeng網內搜尋

自訂搜尋

Ads

2023年9月10日 星期日

C++,Python排列解Leetcode難題1359Count All Valid Pickup and Delivery Options


這個Leetcode難題是很好的中學數學問題,排列問題。
class Solution:
    def countOrders(self, n: int) -> int:
        mod=10**9+7
        num=1
        for i in range(1, n):
            num=num*(i+1)*(2*i+1)%mod
        return num
有一行解的。

沒有留言:

Related Posts Plugin for WordPress, Blogger...

熱門文章