Cleaned up project euler folder and moved the license and readme

This commit is contained in:
2021-10-30 19:59:38 +02:00
parent e0c627a384
commit 38ad5e4d1f
4 changed files with 6 additions and 7 deletions

View File

@@ -1,5 +1,4 @@
#include <iostream>
#include <chrono>
#include <bits/stdc++.h>
using namespace std;
@@ -13,4 +12,4 @@ int main(){
auto duration = chrono::duration_cast<chrono::milliseconds>(chrono::high_resolution_clock::now() - start);
cout << (float)duration.count()/1000 << endl;
return 0;
}
}