Skip to content

oukoutdam/aoc2024_in_csharp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Advent of Code 2024

Going to do this using 'C#'.

How to Add a New Project

  1. Create the project
dotnet new console -n <NameOfProject>
  1. Add the project to the solution file
dotnet sln add <NameOfProject>/<NameOfProject>.csproj
  1. 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>

Solved Questions

  • day 1 part 1
  • day 1 part 2
  • day 2 part 1

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages