11 lines
209 B
C#
11 lines
209 B
C#
namespace _2024;
|
|
|
|
public class Day22 : ISolution
|
|
{
|
|
public void Run()
|
|
{
|
|
var _ = File.ReadAllText("input/22");
|
|
Console.WriteLine("The solution for day 22 is not implmented yet");
|
|
}
|
|
}
|