-
Notifications
You must be signed in to change notification settings - Fork 20.3k
Closed
Labels
@DenizAltunkapan
Description
What would you like to share?
Delete the existing file ReverseStackUsingRecursion.java and move its functionality and test methods from ReverseStackUsingRecursionTest.java to ReverseStack.java and ReverseStackTest.java, respectively.
- Delete ReverseStackUsingRecursion.java
- Delete ReverseStackUsingRecursionTest.java
- Move the recursive stack method from
ReverseStackUsingRecursion
toReverseStack
- Move the test methods from
ReverseStackUsingRecursionTest
toReverseStackTest
- Ensure the added methods in
ReverseStackTest
are correctly formatted according to project standards
Expected Outcome
ReverseStackUsingRecursion.java
andReverseStackUsingRecursionTest.java
are deleted- Recursive method is part of
ReverseStack