Files
AdventOfCode/2018_06/Program.cs

63 lines
1.5 KiB
C#

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using static System.Console;
namespace _2018_06
{
class Program
{
static void Main(string[] args)
{
string[] resTab = File.ReadAllLines(@"..\..\..\Data\Adventofcode_181206\2018_06_data.txt");
List<Tuple<string, int, int>> koords = new List<Tuple<string, int, int>>();
Tuple<int, int> tuple = null;
foreach (string v in resTab)
{
string[] nums = v.Split(new char[] { ',' });
tuple = Tuple.Create(int.Parse(nums[0]), int.Parse(nums[1]));
koords.Add(tuple);
}
int points = 0;
int a=0;
int b = 0;
foreach (Tuple<int,int> tp in koords)
{
points++;
WriteLine($"point {points}, X: {tp.Item1} Y: {tp.Item2}");
if (tp.Item1 > a)
{
a = tp.Item1;
}
if (tp.Item2 > b)
{
b = tp.Item2;
}
}
WriteLine($"max value: {a},{b}");
ReadKey();
}
public string ChNumber(int i)
{
const string nbr = "ABCDEFGHIJKLMNOPQRSTUVXYZ";
var cnbr = nbr.ToCharArray();
string tmpSvar = "";
return tmpSvar;
}
}
}