manrajgrover / algorithms-js

Consumable Data Structures and Algorithms library in JavaScript
MIT License
198 stars 129 forks source link

Stack: Allow passing of array for building stack #19

Closed manrajgrover closed 7 years ago

manrajgrover commented 7 years ago

Currently, one can add elements to stack only one element at a time. Need to allow arrays to be passed for building stack.

manrajgrover commented 7 years ago

Fixed