1
0
Fork 0

Challenges up to 2024.05

This commit is contained in:
Jöran Malek 2024-12-20 00:09:26 +01:00
parent 229f9326d1
commit 326bef2755
16 changed files with 709 additions and 2 deletions

39
.vscode/tasks.json vendored Normal file
View file

@ -0,0 +1,39 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"type": "dotnet",
"task": "build aoc-2024-01.csproj",
"file": "src/2024/01/aoc-2024-01.csproj",
"group": "build",
"problemMatcher": [],
"label": "dotnet: build aoc-2024-01"
},
{
"type": "dotnet",
"task": "build aoc-2024-02.csproj",
"file": "src/2024/02/aoc-2024-02.csproj",
"group": "build",
"problemMatcher": [],
"label": "dotnet: build aoc-2024-02"
},
{
"type": "dotnet",
"task": "build aoc-2024-03.csproj",
"file": "src/2024/03/aoc-2024-03.csproj",
"group": "build",
"problemMatcher": [],
"label": "dotnet: build aoc-2024-03"
},
{
"type": "dotnet",
"task": "build aoc-2024-04.csproj",
"file": "src/2024/04/aoc-2024-04.csproj",
"group": "build",
"problemMatcher": [],
"label": "dotnet: build aoc-2024-04"
}
]
}