1672. 最富有客户的资产总量 题解一: 直接遍历,数组求和,一行代码搞定,不解释 class Solution:def maximumWealth(self, accounts: List[List[int]]) -> int:return max(sum(accounts[i]) for i in range(len(accounts))) 567. 字符串的排列
567. Permutation in String Given two strings s1 and s2, write a function to return true if s2 contains the permutation of s1. In other words, one of the first string’s permutations is the substring o