This commit is contained in:
Ben Harris 2019-12-04 11:32:43 -05:00
parent 06316af729
commit 184c3ede8b
4 changed files with 69 additions and 1 deletions

63
Day4.cs Normal file
View File

@ -0,0 +1,63 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
namespace aoc2019
{
internal class Day4 : Day
{
int start, end;
public Day4()
{
var range = File.ReadLines("input/day4.in")
.First()
.Split('-')
.Select(i => int.Parse(i))
.ToList();
start = range[0]; end = range[1];
}
private bool IsValid(int i)
{
return Math.Floor(Math.Log10(i) + 1) == 6
&& i >= start
&& i <= end
&& IsIncreasingDigits(i);
}
private bool IsIncreasingDigits(int i)
{
int prev = 0;
bool hasDup = false;
foreach (var c in i.ToString())
{
int curr = c - '0';
if (curr < prev)
return false;
if (curr == prev)
hasDup = true;
prev = curr;
}
return hasDup;
}
private bool Part2Criterion(int i)
{
var s = i.ToString();
return s.Select(c => s.Count(j => j == c)).Any(c => c == 2);
}
public override void Part1()
{
Console.WriteLine(Enumerable.Range(start, end).Count(i => IsValid(i)));
}
public override void Part2()
{
Console.WriteLine(Enumerable.Range(start,end).Count(i => IsValid(i) && Part2Criterion(i)));
}
}
}

View File

@ -11,8 +11,9 @@ namespace aoc2019
case 1: return new Day1();
case 2: return new Day2();
case 3: return new Day3();
case 4: return new Day4();
default: return null;
}
}
}
}
}

View File

@ -15,6 +15,9 @@
<None Update="input\day3.in">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="input\day4.in">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>

1
input/day4.in Normal file
View File

@ -0,0 +1 @@
245318-765747