-
Notifications
You must be signed in to change notification settings - Fork 0
/
Task25Tests.cs
37 lines (33 loc) · 1.1 KB
/
Task25Tests.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
using adventofcode_2021.Task25;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using Xunit;
namespace adventofcode_2021.Tests
{
public class Task25Tests
{
[Fact]
public void Task25_RealExample_Correct()
{
Assert.Equal(17, Solution.Function(
ReadFileAsync(Path.Combine("Task25", "DataP1.txt"), Path.Combine("Task25", "DataP2.txt"))));
}
private (List<(int, int)>, List<(string, int)>) ReadFileAsync(string fileP1, string fileP2)
{
var coordLines = File.ReadAllLines(fileP1);
var coords = coordLines.Select(line =>
{
var items = line.Split(",");
return (int.Parse(items[0]), int.Parse(items[1]));
}).ToList();
var foldLines = File.ReadAllLines(fileP2);
var foldings = foldLines.Select(line =>
{
var items = line.Split("fold along ")[1].Split("=");
return (items[0], int.Parse(items[1]));
}).ToList();
return (coords, foldings);
}
}
}