aboutsummaryrefslogtreecommitdiff
path: root/2020/10/Program.cs
diff options
context:
space:
mode:
Diffstat (limited to '2020/10/Program.cs')
-rw-r--r--2020/10/Program.cs37
1 files changed, 0 insertions, 37 deletions
diff --git a/2020/10/Program.cs b/2020/10/Program.cs
deleted file mode 100644
index 16ef0ff..0000000
--- a/2020/10/Program.cs
+++ /dev/null
@@ -1,37 +0,0 @@
-using System;
-using System.IO;
-using System.Linq;
-
-namespace AOC
-{
- internal class Run
- {
- private static int PartOne(int[] data)
- {
- int prev = 0, three = 1, one = 0;
- for (int i = 0; i < data.Length; i++)
- {
- if (data[i] - prev == 3) three++;
- else one++;
-
- prev = data[i];
- }
-
- return one * three;
- }
-
- private static int PartTwo(int[] data)
- {
- return 0;
- }
-
- public static void Main(string[] args)
- {
- string text = File.ReadAllText(@"C:\Users\bornerma\Desktop\input.txt");
- string[] numsStr = text.Split('\n');
- int[] nums = Array.ConvertAll(numsStr, int.Parse).OrderBy(i => i).ToArray();
- Console.WriteLine(PartOne(nums));
- Console.WriteLine(PartTwo(nums));
- }
- }
-} \ No newline at end of file