AdventOfCode/Year2023/Loader2023.cs

20 lines
334 B
C#

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();
}
}