about summary refs log blame commit diff
path: root/Day15.cs
blob: fa2d51099f700b8b3bad5bfb3b9daee01fc7c2b1 (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;

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

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