Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Coding Challenge - Iterator over a nested data structure #23

Open
NicolaBernini opened this issue Oct 13, 2019 · 0 comments
Open

Coding Challenge - Iterator over a nested data structure #23

NicolaBernini opened this issue Oct 13, 2019 · 0 comments
Assignees
Labels
feature New Feature means Solution, Article, ... pretty generic label for improvement

Comments

@NicolaBernini
Copy link
Owner

NicolaBernini commented Oct 13, 2019

Overview

Design a data structure able to represent a sequence of nested values like the following one

[1,2],3,[4,5],[], [6]

and an iterator able to navigate that data structure and to return the list of elements without nesting hence like the following one

1,2,3,4,5,,6,

Solutions

Solutions Page

@NicolaBernini NicolaBernini added the feature New Feature means Solution, Article, ... pretty generic label for improvement label Oct 13, 2019
@NicolaBernini NicolaBernini self-assigned this Oct 13, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature New Feature means Solution, Article, ... pretty generic label for improvement
Projects
None yet
Development

No branches or pull requests

1 participant