leetcode - 942 - 增減字符串匹配

class Solution:     def diStringMatch(self, S):         """         :type S: str         :rtype: List[int]         """         N = len(S)         L = []         a = 0         for i in range(N):      
相關文章
相關標籤/搜索