Day 13 remove unused using
This commit is contained in:
parent
9bb26930eb
commit
d109e882cb
4
Day13.cs
4
Day13.cs
|
|
@ -1,7 +1,7 @@
|
||||||
#define Day13
|
#define Day13
|
||||||
using System.Text.RegularExpressions;
|
|
||||||
using System.Threading.Channels;
|
|
||||||
#if Day13
|
#if Day13
|
||||||
|
using System.Text.RegularExpressions;
|
||||||
|
|
||||||
var text = File.ReadAllText("day13/input").Split("\n\n");
|
var text = File.ReadAllText("day13/input").Split("\n\n");
|
||||||
var points = text[0].Split("\n").Select(l => l.Split(","))
|
var points = text[0].Split("\n").Select(l => l.Split(","))
|
||||||
.Select(p => new Point(int.Parse(p[0]), int.Parse(p[1]))).ToHashSet();
|
.Select(p => new Point(int.Parse(p[0]), int.Parse(p[1]))).ToHashSet();
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue