• 2024-09-25[Python手撕]马戏团人塔
    classSolution:defbestSeqAtIndex(self,height:List[int],weight:List[int])->int:n=len(height)persons=[[height[i],weight[i]]foriinrange(n)]persons.sort(key=lambdax:x[0])n=len(persons)