LeetCode406. 根据身高重建队列
-
- 题目链接
- 代码
题目链接
https://leetcode.cn/problem服务器托管网s/queue-reconstruction-by-height/
代码
class Solution:
def reconstructQueue(self, people: List[List[int]]) -> List[List[int]]:
people.sort(key =lambda x: (-x[0], x[1]))
que = []
for p in people:
que.insert(p[1], p)
return que
服务服务器托管网器托管,北京服务器托管,服务器租用 http://www.fwqtg.net
本文首发于微信公众号:大迁世界, 我的微信:qq449245884,我会第一时间和你分享前端行业趋势,学习途径等等。更多开源作品请看 GitHub https://github.com/qq449245884/xiaozhi ,包含一线大厂面试完整考点、资料以…