Meta interview question

Design a super enumerator using the basic enumerator of iOS for enumerating all objects in a nested NSArray such as @[@"a", @[@"b", @"c", @[ @"d"]]]

Interview Answer

Anonymous

13 Oct 2017

Use stack to store layers of enumerator objects..