Going to do this using 'C#'.
- Create the project
dotnet new console -n <NameOfProject>
- Add the project to the solution file
dotnet sln add <NameOfProject>/<NameOfProject>.csproj
- Run specific project
# run this if path to input.txt is relative to Program.cs
cd <NameOfProject>
dotnet run
# run below if the path of input.txt is set from solution root
# dotnet run --project <NameOfProject>
- day 1 part 1
- day 1 part 2
- day 2 part 1