We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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 Page
The text was updated successfully, but these errors were encountered:
NicolaBernini
No branches or pull requests
Overview
Design a data structure able to represent a sequence of nested values like the following one
and an iterator able to navigate that data structure and to return the list of elements without nesting hence like the following one
Solutions
Solutions Page
The text was updated successfully, but these errors were encountered: