Problem minstack
User TheInvadr
Submission Time 2024-12-27 21:51:06
Score 0
Max Time N/A
Max Memory N/A

Compile Error

minstack.cpp: In function ‘void push(int)’:
minstack.cpp:10:5: error: ‘x’ was not declared in this scope
10 | mp[x]++;
| ^
minstack.cpp: In function ‘int top()’:
minstack.cpp:21:17: error: expected ‘;’ before ‘}’ token
21 | return st.top()
| ^
| ;
22 | }
| ~