17 lines
274 B
C#
17 lines
274 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();
|
||
|
}
|
||
|
}
|
||
|
|