2024-12-01 15:12:43 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections;
|
|
|
|
|
|
|
|
|
|
namespace Advent24
|
|
|
|
|
{
|
|
|
|
|
internal class Program
|
|
|
|
|
{
|
|
|
|
|
static void Main(string[] args)
|
|
|
|
|
{
|
2024-12-02 07:20:38 +00:00
|
|
|
|
//_ = new Day1();
|
2024-12-03 06:42:41 +00:00
|
|
|
|
//_ = new Day2();
|
2024-12-04 06:42:52 +00:00
|
|
|
|
// _ = new Day3();
|
|
|
|
|
_ = new Day4();
|
2024-12-01 15:12:43 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|