class Solution: def numberOfWeakCharacters(self, properties: List[List[int]]) -> int: properties.sort(key = lambda x : (x[0], -x[1]))
確定! 回上一頁