Rename resolve methods

This commit is contained in:
2018-12-04 09:11:58 +01:00
parent fa81cd2dc4
commit ebadcd396b
7 changed files with 41 additions and 41 deletions

View File

@@ -72,7 +72,7 @@ namespace AdventOfCode2018
return new Tuple<bool, bool>(hasPair, hasTriplet);
}
public string ResolveDay02(string[] inputs)
public string ResolvePart1(string[] inputs)
{
int pairsCount = 0;
int tripletsCount = 0;
@@ -101,7 +101,7 @@ namespace AdventOfCode2018
return new Tuple<int, string>(diffCount, sb.ToString());
}
public string ResolveDay02_Part2(string[] inputs)
public string ResolvePart2(string[] inputs)
{
for (int i = 0; i < (inputs.Length - 1); i++)
{