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

52
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,52 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "aoc-2024-01 Debug",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "dotnet: build aoc-2024-01",
"program": "${workspaceFolder}/artifacts/bin/aoc-2024-01/debug/aoc-2024-01.dll",
"args": ["part-one", "data/2024/01/input.txt"],
"cwd": "${workspaceFolder}",
"stopAtEntry": false,
"console": "internalConsole"
},
{
"name": "aoc-2024-02 Debug",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "dotnet: build aoc-2024-02",
"program": "${workspaceFolder}/artifacts/bin/aoc-2024-02/debug/aoc-2024-02.dll",
"args": ["part-two", "data/2024/02/dev.txt"],
"cwd": "${workspaceFolder}",
"stopAtEntry": false,
"console": "internalConsole"
},
{
"name": "aoc-2024-03 Debug",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "dotnet: build aoc-2024-03",
"program": "${workspaceFolder}/artifacts/bin/aoc-2024-03/debug/aoc-2024-03.dll",
"args": ["part-two", "data/2024/03/dev2.txt"],
"cwd": "${workspaceFolder}",
"stopAtEntry": false,
"console": "internalConsole"
},
{
"name": "aoc-2024-04 Debug",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "dotnet: build aoc-2024-04",
"program": "${workspaceFolder}/artifacts/bin/aoc-2024-04/debug/aoc-2024-04.dll",
"args": ["part-one", "data/2024/04/dev.txt"],
"cwd": "${workspaceFolder}",
"stopAtEntry": false,
"console": "internalConsole"
}
]
}

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"
}
]
}