Problem card
User SuryaReddy
Submission Time 2026-01-28 17:23:26
Score 0
Max Time N/A
Max Memory N/A

Compile Error

card.cpp: In function ‘int main()’:
card.cpp:26:13: error: ‘max’ was not declared in this scope; did you mean ‘std::max’?
26 | maxArea = max(maxArea, areas[j]);
| ^~~
| std::max
In file included from /usr/include/c++/9/bits/char_traits.h:39,
from /usr/include/c++/9/ios:40,
from /usr/include/c++/9/ostream:38,
from /usr/include/c++/9/iostream:39,
from card.cpp:1:
/usr/include/c++/9/bits/stl_algobase.h:268:5: note: ‘std::max’ declared here
268 | max(const _Tp& __a, const _Tp& __b, _Compare __comp)
| ^~~