描述 表: Teams +----------------+---------+| Column Name | Type |+----------------+---------+| team_id | int || team_name | varchar |+----------------+---------+team_id 是该表主
买卖股票重要的部分就是状态转移, 通常是二维i,0/1代表第i天持有/不持有股票时的最大利润 Part 1: 不限制交易次数 122 每天都可买入卖出 class Solution:def maxProfit(self, prices: List[int]) -> int:# on day i, we have stockdp1 = [0] * len(prices)# on day i,