Skip to content

Commit 3694b78

Browse files
committed
update: infor added
1 parent 3eab705 commit 3694b78

File tree

1 file changed

+7
-0
lines changed
  • src/_DataStructures_/Stack/2-stacks-using1-array

1 file changed

+7
-0
lines changed

src/_DataStructures_/Stack/2-stacks-using1-array/index.js

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* So what special in this implementation?
3+
* This deals with Dynamic array without a size hence the implemetation uses
4+
* lot of space and I can sense that it can be further improved hence feel free
5+
* to open PR
6+
*/
7+
18
class TwoStacks {
29
constructor() {
310
this.data = [];

0 commit comments

Comments
 (0)