Problem minimum
User feynmantree
Submission Time 2025-03-22 07:30:12
Score 0
Max Time N/A
Max Memory N/A

Compile Error

minimum.cpp:1:25: error: declaration of ‘A’ as array of references
1 | int findMin(int N, int& A[]) {
| ^
minimum.cpp: In function ‘int findMin(...)’:
minimum.cpp:3:13: error: ‘A’ was not declared in this scope
3 | for (int i:A) {
| ^
minimum.cpp:5:12: error: ‘N’ was not declared in this scope
5 | while (c<N && i!=0) {
| ^
minimum.cpp:8:10: error: ‘N’ was not declared in this scope
8 | if (c==N) {
| ^