PE 081, added problem framework and input data, they are getting real hard all of a sudden

This commit is contained in:
2022-05-29 16:22:12 +02:00
parent 6de6e057ae
commit 09e0d38e47
2 changed files with 95 additions and 0 deletions

15
projecteuler/081/main.cpp Normal file
View File

@@ -0,0 +1,15 @@
#include <bits/stdc++.h>
using namespace std;
int main(){
cout << "Hello this is Patrick" << endl;
auto start = chrono::high_resolution_clock::now();
// Insert code here
auto duration = chrono::duration_cast<chrono::milliseconds>(chrono::high_resolution_clock::now() - start);
cout << (float)duration.count()/1000 << endl;
return 0;
}