Example #1
0
 private static async Task Day17_Part2()
 {
     // have to learn some LZ77 first buts lets do something for now
     Console.CursorVisible = false;
     Console.Clear();
     Console.BackgroundColor = ConsoleColor.Gray;
     Console.ForegroundColor = ConsoleColor.DarkMagenta;
     Console.WindowLeft      = 0;
     Console.WindowTop       = 0;
     Console.WindowWidth     = Console.LargestWindowWidth / 2;
     Console.WindowHeight    = (Console.LargestWindowHeight / 4) * 3;
     Day17.WarnRobots();
 }