877. Stone Game——dp

题目分析:dp[i][j]为i到j  Alex赢lee的个数 class Solution(object):     def stoneGame(self, piles):         """         :type piles: List[int]         :rtype: bool         """         length = len(piles)         d
相关文章
相关标签/搜索