Leetcode Notes II

Sarah Wang
6 min readJun 8, 2020

Continue with last note of Leetcode, there are more challenges in June with daily updating and interview questions. So the second version of nodes is provided here. Please see attached my GitHub links:

https://github.com/sarahwang93/python-leetcode

https://github.com/sarahwang93/leetcode

Queue Reconstruction By Height

with this question 2 conditions should be seen as the queue priority, a. people[i][1] which is the number of person stand before this people b. the people’s height must satisfy larger or equal to the height…

--

--