add solution of HW4

This commit is contained in:
JamesFlare1212
2025-02-13 14:25:13 -05:00
parent 84902bd0dc
commit 38c1a8e0d9
6 changed files with 300 additions and 5 deletions

18
.vscode/launch.json vendored
View File

@@ -52,6 +52,24 @@
"MIMode": "gdb",
"miDebuggerPath": "/usr/bin/gdb",
"preLaunchTask": "C/C++: g++ build active file"
},
{
"name": "nybusninesses",
"type": "cppdbg",
"request": "launch",
"program": "${fileDirname}/${fileBasenameNoExtension}",
"args": [
"large_input1.json",
"output.txt",
"93101",
"Shopping",
"debug"
],
"cwd": "${fileDirname}",
"environment": [],
"MIMode": "gdb",
"miDebuggerPath": "/usr/bin/gdb",
"preLaunchTask": "C/C++: g++ build active file"
}
]
}