-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSolution.cs
51 lines (42 loc) · 1.31 KB
/
Solution.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
using System.Collections.Generic;
using System.Linq;
namespace AdventOfCode2016.Day06
{
internal class Solution
{
private readonly char[,] _input;
public Solution(IEnumerable<string> input)
{
_input = Matrix.Create(input.Select(x => x.ToArray()).ToArray());
}
public string PartOne()
{
var result = "";
for (var i = 0; i < _input.Width(); i++)
{
result += GetColumnCharacterCount(i)
.OrderByDescending(x => x.Count)
.Select(x => x.Character)
.First();
}
return result;
}
public string PartTwo()
{
var result = "";
for (var i = 0; i < _input.Width(); i++)
{
result += GetColumnCharacterCount(i)
.OrderBy(x => x.Count)
.Select(x => x.Character)
.First();
}
return result;
}
private IEnumerable<(char Character, int Count)> GetColumnCharacterCount(int column) =>
from c in _input.GetColumn(column)
group c by c
into g
select (g.Key, g.Count());
}
}