30/100. Queue Reconstruction by Height

class Solution(object): def reconstructQueue(self, people): """ :type people: List[List[int]] :rtype: List[List[int]] """ sortOfpeople = sorted(people, key
相關文章
相關標籤/搜索