2023-12-02 01:39:47 +00:00
|
|
|
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();
|
2023-12-02 16:20:10 +00:00
|
|
|
Day2.Run();
|
2023-12-04 17:28:27 +00:00
|
|
|
Day4.Run();
|
2023-12-02 01:39:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|