about summary refs log tree commit diff
path: root/Day16.cs
blob: 9f5fc8ca5c1cb1e90ce24d5dc52d808bc0a77aff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
using System;
using System.Collections.Generic;
using System.Linq;

namespace aoc2019
{
    internal class Day16 : Day
    {
        public override int DayNumber => 16;

        public Day16()
        {
        }

        public override string Part1()
        {
            return "";
        }

        public override string Part2()
        {
            return "";
        }
    }
}