Files
2020/Program.cs
2020-12-11 08:49:59 -06:00

23 lines
467 B
C#

namespace _2020
{
class Program
{
static void Main(string[] args)
{
var start = System.DateTime.Now;
Q01.Go();
Q02.Go();
Q03.Go();
Q04.Go();
Q05.Go();
Q06.Go();
Q07.Go();
Q08.Go();
Q09.Go();
Q10.Go();
Q11.Go();
System.Diagnostics.Debug.WriteLine($"Total time={(System.DateTime.Now - start).TotalMilliseconds}ms");
}
}
}