namespace AdventOfCode.Year2023;
public static class Loader2023
{
public static void Load()
/* Year 2023
*
* Solutions in C# for the 2023 Advent of Code
* Slower solutions are commented
*/
Day1.Run();
Day2.Run();
Day4.Run();
Day5.Run();
}