Problem minimum
User Fjerds
Submission Time 2026-05-22 17:26:23
Score 0
Max Time N/A
Max Memory N/A

Compile Error

minimum.cpp: In function ‘int findMin(int, int*)’:
minimum.cpp:2:18: error: ‘LLONG_MAX’ was not declared in this scope
2 | long long min = LLONG_MAX;
| ^~~~~~~~~
minimum.cpp:1:1: note: ‘LLONG_MAX’ is defined in header ‘<climits>’; did you forget to ‘#include <climits>’?
+++ |+#include <climits>
1 | int findMin(int N, int A[]) {