1
0
Fork 0

Add Day 6

This commit is contained in:
Jöran Malek 2024-12-22 02:20:02 +01:00
parent 0111ee1176
commit 367cd56a42
9 changed files with 345 additions and 0 deletions

11
.vscode/launch.json vendored
View file

@ -58,6 +58,17 @@
"cwd": "${workspaceFolder}",
"stopAtEntry": false,
"console": "internalConsole"
},
{
"name": "aoc-2024-06 Debug",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "dotnet: build aoc-2024-06",
"program": "${workspaceFolder}/artifacts/bin/aoc-2024-06/debug/aoc-2024-06.dll",
"args": ["part-two", "data/2024/06/dev.txt"],
"cwd": "${workspaceFolder}",
"stopAtEntry": false,
"console": "internalConsole"
}
]
}