algoClass icon indicating copy to clipboard operation
algoClass copied to clipboard

typo

Open techraiders opened this issue 8 years ago • 1 comments

https://github.com/kuychaco/algoClass/blob/58517aad9a51cfe8fcb007467cadc9244a9e73c9/data-structures/queue.js#L153

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); }

techraiders avatar Oct 20 '17 15:10 techraiders

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

towc avatar Oct 29 '17 10:10 towc