DSA Day 67/100
Topic: Stack
Questions Successfully Completed: 1
1) Special StackEasy
QuestionInput: Stack: 18 19 29 15 16 Output: 15 Explanation: The minimum element of the stack is 15.
package stack;
import java.util.Stack;
public class specialStack {
pub...
preetikaprakash.hashnode.dev1 min read