initialize your data structure here.
()
| 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); |
nothing calls this directly
no outgoing calls
no test coverage detected