ben
/
aoc
1
0
Fork 0
aoc/AOC2015/Day24.cs

12 lines
270 B
C#
Raw Normal View History

2022-12-03 05:55:49 +00:00
namespace AOC2015;
/// <summary>
2022-12-03 05:41:38 +00:00
/// Day 24: <a href="https://adventofcode.com/2015/day/24"/>
/// </summary>
2023-09-20 18:38:58 +00:00
public sealed class Day24() : Day(2015, 24, "It Hangs in the Balance")
{
public override object Part1() => "";
public override object Part2() => "";
}