| Problem | minstack |
|---|---|
| User | Nebula |
| Submission Time | 2026-08-13 12:47:53 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
minstack.cpp:5:1: error: ‘minstack’ does not name a type; did you mean ‘sigstack’?
5 | minstack<int> ms;
| ^~~~~~~~
| sigstack
minstack.cpp: In function ‘void push(int)’:
minstack.cpp:8:2: error: ‘ms’ was not declared in this scope; did you mean ‘s’?
8 | ms.push(min(ms.top(),X));
| ^~
| s
minstack.cpp: In function ‘void pop()’:
minstack.cpp:13:2: error: ‘ms’ was not declared in this scope; did you mean ‘s’?
13 | ms.pop();
| ^~
| s
minstack.cpp: In function ‘int getMin()’:
minstack.cpp:21:9: error: ‘ms’ was not declared in this scope; did you mean ‘s’?
21 | return ms.top();
| ^~
| s