| Problem | binarysearch |
|---|---|
| User | key678 |
| Submission Time | 2026-06-25 15:04:45 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
binarysearch.cpp: In function ‘int main()’:
binarysearch.cpp:12:21: error: no matching function for call to ‘sort(int [N], int&)’
12 | sort(arr, arr[N]);
| ^
In file included from /usr/include/c++/9/algorithm:62,
from /usr/include/x86_64-linux-gnu/c++/9/bits/stdc++.h:65,
from binarysearch.cpp:1:
/usr/include/c++/9/bits/stl_algo.h:4863:5: note: candidate: ‘template<class _RAIter> void std::sort(_RAIter, _RAIter)’
4863 | sort(_RandomAccessIterator __first, _RandomAccessIterator __last)
| ^~~~
/usr/include/c++/9/bits/stl_algo.h:4863:5: note: template argument deduction/substitution failed:
binarysearch.cpp:12:21: note: deduced conflicting types for parameter ‘_RAIter’ (‘int*’ and ‘int’)
12 | sort(arr, arr[N]);
| ^
In file included from /usr/include/c++/9/algorithm:62,
from /usr/include/x86_64-linux-gnu/c+