0341. Flatten Nested List Iterator
Description
initialize iterator with nestedList
res = []
while iterator.hasNext()
append iterator.next() to the end of res
return res**Input:** nestedList = [[1,1],2,[1,1]]
**Output:** [1,1,2,1,1]
**Explanation:** By calling next repeatedly until hasNext returns false, the order of elements returned by next should be: [1,1,2,1,1].ac1: stack
ac2: Queue
Last updated