fix: minimax.cpp issues

This commit is contained in:
Panquesito7
2020-06-28 13:02:20 -05:00
parent 6db5bfae8a
commit 94f62b29c3

View File

@@ -1,6 +1,7 @@
#include <cmath>
#include <iostream>
#include <vector>
#include <algorithm>
using std::cout;
using std::endl;
@@ -24,4 +25,5 @@ int main() {
int height = log2(scores.size());
cout << "Optimal value: " << minimax(0, 0, true, scores, height) << endl;
return 0;
}