From fc4981e3ea863632c88e5f0b308ae4532d077e49 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sun, 13 Dec 2020 12:35:33 +0100 Subject: Added execution timers --- 2020/01/solve.cs | 3 +++ 1 file changed, 3 insertions(+) (limited to '2020/01/solve.cs') diff --git a/2020/01/solve.cs b/2020/01/solve.cs index fb2f6ae..70604c5 100644 --- a/2020/01/solve.cs +++ b/2020/01/solve.cs @@ -49,11 +49,14 @@ namespace AOC string text = File.ReadAllText("input"); string[] numsStr = text.Split('\n'); numsStr[numsStr.Length - 1] = "2020"; // Some weird newline character ig + var clock = System.Diagnostics.Stopwatch.StartNew(); int[] nums = Array.ConvertAll(numsStr, int.Parse).OrderBy(i => i).ToArray(); int[] d = Double(nums, 0, 2020); int[] t = Triple(nums, 2020); Console.WriteLine(d[0] * d[1]); Console.WriteLine(t[0] * t[1] * t[2]); + clock.Stop(); + Console.WriteLine("TIME: " + ((float)clock.ElapsedMilliseconds / 1000.0).ToString("n6") + " seconds"); } } } -- cgit v1.2.3