Problem | scalars |
---|---|
User | nismi001 |
Submission Time | 2025-06-28 19:54:35 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
scalars.cpp: In function ‘long long int minScalarProductBruteForce(std::vector<int>, std::vector<int>)’:
scalars.cpp:10:28: error: ‘LLONG_MAX’ was not declared in this scope
10 | long long minProduct = LLONG_MAX;
| ^~~~~~~~~
scalars.cpp:4:1: note: ‘LLONG_MAX’ is defined in header ‘<climits>’; did you forget to ‘#include <climits>’?
3 | #include <algorithm>
+++ |+#include <climits>
4 | using namespace std;