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,6 +1,6 @@
MIT License MIT License
Copyright (c) <year> <copyright holders> Copyright (c) 2021 Philippe Zwietering
Permission is hereby granted, free of charge, to any person obtaining a copy Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal of this software and associated documentation files (the "Software"), to deal

3
README.md Normal file
View File

@@ -0,0 +1,3 @@
# Contest files
Set of all kinds of programmings contests, including my personal (usually not optimized) solutions for the Project Euler challenges, some stuff for AtCoder, Codeforces and Google Kickstart

View File

@@ -1,3 +0,0 @@
# project-euler
My personal (usually not optimized) solutions for the Project Euler challenges

View File

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