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

typo #18

Open
techraiders opened this issue Oct 20, 2017 · 1 comment
Open

typo #18

techraiders opened this issue Oct 20, 2017 · 1 comment

Comments

@techraiders
Copy link

function Queue_TwoStacks() {

Queue_TwoStack should receive capacity argument and pass to new Stack, like below.

function Queue_TwoStack (capacity) {
this._stackIn = new Stack(capacity);
this._stackOut = new Stack(capacity);
}

@towc
Copy link

towc commented Oct 29, 2017

the file structure has been changed. Can you update the issue?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants