My solutions for Advent of Code.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
adventofcode/2019/Day2/Program.cs

20 lines
509 B

5 years ago
using System;
5 years ago
using System.IO;
5 years ago
namespace Day2 {
class Program {
static void Main(string[] args) {
string input = File.ReadAllText(@"./input.txt"); // get the input
5 years ago
string[] inputs = input.Split( ",", StringSplitOptions.None );
int[] intcodes = Array.ConvertAll( inputs, str => int.Parse( str ) ); // convert all of the contents to int's
int[] output = new int[intcodes.Length];
Part1.compile compile = new Part1.compile();
compile.intcode( intcodes );
5 years ago
}
}
}