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
相关文章
相关标签/搜索