17 lines
405 B
C#
17 lines
405 B
C#
using System.Text;
|
|
|
|
using AdventOfCodeLibrary._2022;
|
|
using AdventOfCodeLibrary.Shared;
|
|
|
|
string _demoData = @"Sabqponm
|
|
abcryxxl
|
|
accszExk
|
|
acctuvwj
|
|
abdefghi";
|
|
|
|
Answerable answerable = new Day12Part1();
|
|
byte[] dataArray = File.ReadAllBytes(answerable.DefaultInputFile);
|
|
dataArray = Encoding.UTF8.GetBytes(_demoData);
|
|
|
|
Console.WriteLine($"Answer: {answerable.GetAnswer(dataArray)}");
|
|
Console.ReadKey(true); |