Problem minimum
User AppleOnAstick
Submission Time 2023-11-09 09:16:20
Score 0
Max Time N/A
Max Memory N/A

Compile Error

minimum.cpp: In function ‘int32_t main()’:
minimum.cpp:7:29: error: ‘long long int findMin(long long int, long long int*)’ redeclared as different kind of entity
7 | int findMin (int N, int A[]);
| ^
minimum.cpp:6:6: note: previous declaration ‘long long int findMin’
6 | int findMin;
| ^~~~~~~
minimum.cpp:8:5: error: expected ‘;’ before ‘N’
8 | cin N;
| ^~
| ;
minimum.cpp:9:9: error: ‘minimum’ was not declared in this scope
9 | return minimum;
| ^~~~~~~