Day 10 + small perf checks

This commit is contained in:
2020-12-10 15:05:09 -06:00
parent 921c59ffca
commit 78e2ce126d
5 changed files with 182 additions and 0 deletions

View File

@ -4,6 +4,7 @@
{
static void Main(string[] args)
{
var start = System.DateTime.Now;
Q01.Go();
Q02.Go();
Q03.Go();
@ -13,6 +14,8 @@
Q07.Go();
Q08.Go();
Q09.Go();
Q10.Go();
System.Diagnostics.Debug.WriteLine($"Total time={(System.DateTime.Now - start).TotalMilliseconds}ms");
}
}
}