Problem minimum
User susboy
Submission Time 2024-05-10 19:31:28
Score 0
Max Time N/A
Max Memory N/A

Compile Error

minimum.cpp: In function ‘int findMin(int, int*)’:
minimum.cpp:5:14: error: ‘LLONG_MAX’ was not declared in this scope
5 | int mn = LLONG_MAX;
| ^~~~~~~~~
minimum.cpp:2:1: note: ‘LLONG_MAX’ is defined in header ‘<climits>’; did you forget to ‘#include <climits>’?
1 | #include "minimum.h"
+++ |+#include <climits>
2 | using namespace std;