Flatten Nested List Iterator(DFS,Iter)
Input:
[[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]
.Last updated