Problem funnyballs
User benji9736
Submission Time 2025-12-01 13:28:13
Score 0
Max Time N/A
Max Memory N/A

Compile Error

funnyballs.cpp: In function ‘int main()’:
funnyballs.cpp:11:24: error: expected ‘;’ before ‘}’ token
11 | tmp.push_back(arr[i])
| ^
| ;
12 | }
| ~
funnyballs.cpp:13:2: error: ‘sort’ was not declared in this scope; did you mean ‘qsort’?
13 | sort(arr, arr+n);
| ^~~~
| qsort
funnyballs.cpp:21:23: error: invalid operands of types ‘<unresolved overloaded function type>’ and ‘int’ to binary ‘operator+’
21 | tmp.erase(tmp.begin + i)
| ~~~~~~~~~ ^ ~
| | |
| | int
| <unresolved overloaded function type>