MCPcopy Create free account
hub / github.com/MisterBooo/LeetCodeAnimation / MinStack

Method MinStack

problems/0155-min-stack/Code/1.java:7–10  ·  view source on GitHub ↗

initialize your data structure here.

()

Source from the content-addressed store, hash-verified

5
6 /** initialize your data structure here. */
7 public MinStack() {
8 _data = new Stack<>();
9 _min = new Stack<>();
10 }
11
12 public void push(int x) {
13 _data.add(x);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected