diff options
author | Marvin Borner | 2020-12-13 12:35:33 +0100 |
---|---|---|
committer | Marvin Borner | 2020-12-13 12:35:33 +0100 |
commit | fc4981e3ea863632c88e5f0b308ae4532d077e49 (patch) | |
tree | 811a1d2c09cd811764fb8c3c09099a876beb0e7f /2020/01/solve.cs | |
parent | f476fb5eaf30254dcb9e480f27f52b207147e207 (diff) |
Added execution timers
Diffstat (limited to '2020/01/solve.cs')
-rw-r--r-- | 2020/01/solve.cs | 3 |
1 files changed, 3 insertions, 0 deletions
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");
}
}
}
|