We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3eab705 commit 3694b78Copy full SHA for 3694b78
src/_DataStructures_/Stack/2-stacks-using1-array/index.js
@@ -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
+
8
class TwoStacks {
9
constructor() {
10
this.data = [];
0 commit comments