983. Minimum Cost For Tickets——dp

    题目分析:可以买一天票,七天票,30天票    class Solution(object): def generateParenthesis(self, days, costs): """ :type n: int :rtype: List[str] """ dp = [0]*366
相关文章
相关标签/搜索