Problem minimum
User newperson
Submission Time 2025-01-24 17:16:07
Score 0
Max Time N/A
Max Memory N/A

Compile Error

minimum.cpp:2:17: error: ‘stf’ is not a namespace-name
2 | using namespace stf;
| ^~~
minimum.cpp: In function ‘int findMin(int, int*)’:
minimum.cpp:9:10: error: ‘min’ was not declared in this scope; did you mean ‘std::min’?
9 | smol = min(smol, A[i]);
| ^~~
| std::min
In file included from /usr/include/c++/9/algorithm:62,
from /usr/include/x86_64-linux-gnu/c++/9/bits/stdc++.h:65,
from minimum.cpp:1:
/usr/include/c++/9/bits/stl_algo.h:3456:5: note: ‘std::min’ declared here
3456 | min(initializer_list<_Tp> __l, _Compare __comp)
| ^~~