| Problem | binarysearch |
|---|---|
| User | Zaydluq |
| Submission Time | 2026-06-25 14:57:48 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
binarysearch.cpp: In function ‘int main()’:
binarysearch.cpp:19:7: error: ‘arr’ was not declared in this scope
19 | if(arr[mid] >= x) {
| ^~~
binarysearch.cpp:19:19: error: ‘x’ was not declared in this scope
19 | if(arr[mid] >= x) {
| ^
binarysearch.cpp:27:23: error: expected ‘;’ before ‘}’ token
27 | cout << ans << "\n"
| ^
| ;
28 | }
| ~