28 lines
542 B
C#
28 lines
542 B
C#
using AdventOfCode.Runner.Attributes;
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AdventOfCode.Problems.AOC2022.Day13;
|
|
[ProblemInfo(2022, 13, "Distress Signal")]
|
|
internal class DistressSignal : Problem
|
|
{
|
|
public override void CalculatePart1()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public override void CalculatePart2()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public override void LoadInput()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|