Example #1
0
        private static List <int> GetIntCode()
        {
            string inputFilePath = $"{Environment.CurrentDirectory}/Input/Day2Input.txt";
            string txt           = File.ReadAllText(inputFilePath);
            var    intCode       = IntcodeComputer.ParseIntcode(txt).ToList();

            return(intCode);
        }