about summary refs log blame commit diff
path: root/Day15.cs
blob: 487030f6f969860eecd34142bff2a58ac553d99f (plain) (tree)
1
2
3
4
5
6
7
8
                  
                  


                 
                                     
     
                                      


                      
                                              

         

                                            

                                      
                                      






                                      
 
using System.Linq;
using aoc2019.lib;

namespace aoc2019
{
    internal sealed class Day15 : Day
    {
        private readonly IntCodeVM vm;

        public Day15()
        {
            vm = new IntCodeVM(Input.First());
        }

        public override int DayNumber => 15;

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

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