Initial commit - should have done this on day 1...

This commit is contained in:
2020-12-03 09:59:03 -06:00
commit f2545d7373
10 changed files with 1837 additions and 0 deletions

12
Program.cs Normal file
View File

@ -0,0 +1,12 @@
namespace _2020
{
class Program
{
static void Main(string[] args)
{
Q01.Go();
Q02.Go();
Q03.Go();
}
}
}