diff --git a/Daily/Implement_two_stack_in_Array.cpp b/Daily/Implement_two_stack_in_Array.cpp index 0ed3bd2..3ea73ae 100644 --- a/Daily/Implement_two_stack_in_Array.cpp +++ b/Daily/Implement_two_stack_in_Array.cpp @@ -6,7 +6,6 @@ pop1 : pops element from first stack and returns the popped element. If first st pop2 : pops element from second stack and returns the popped element. If second stack is empty, it should return -1. - Input: push1(2) push1(3)