Files
AdventOfCode/2018_06/Program.cs
2018-12-16 10:10:44 +01:00

20 lines
427 B
C#

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace _2018_06
{
class Program
{
static void Main(string[] args)
{
string[] resTab = File.ReadAllLines(@"..\..\..\Data\Adventofcode_181206\2018_06_data.txt");
List<Tuple<int, int>> koords = new List<Tuple<int, int>>();
}
}
}