AdventOfCode/Year2023/Loader2023.cs

17 lines
274 B
C#
Raw Normal View History

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