Rebased projecteuler folder, now includes all contest programming stuff

This commit is contained in:
2021-10-26 10:54:24 +02:00
parent 1aa6120838
commit e0c627a384
77 changed files with 203 additions and 67 deletions

View File

@@ -1,16 +1,17 @@
#include <iostream>
#include <chrono>
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;
#include <iostream>
#include <string>
#include <vector>
#include <cmath>
using namespace std;
int main(){
ios::sync_with_stdio(0);
cin.tie(0);
return 0;
}