Problem | trashinteractive |
---|---|
User | AlphanumericUsername |
Submission Time | 2024-03-27 17:14:20 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
trashinteractive.cpp: In function ‘void find_cheese(int, int)’:
trashinteractive.cpp:14:8: error: ‘max’ was not declared in this scope; did you mean ‘std::max’?
14 | l = max(1,l);
| ^~~
| std::max
In file included from /usr/include/c++/9/algorithm:62,
from /usr/include/x86_64-linux-gnu/c++/9/bits/stdc++.h:65,
from trashinteractive.cpp:2:
/usr/include/c++/9/bits/stl_algo.h:3468:5: note: ‘std::max’ declared here
3468 | max(initializer_list<_Tp> __l, _Compare __comp)
| ^~~
trashinteractive.cpp:15:8: error: ‘min’ was not declared in this scope; did you mean ‘std::min’?
15 | r = min(1001,r)
| ^~~
| 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 trashinteractive.cpp:2:
/usr/include/c++/9/bits/stl_algo.h:3456: