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

22
.vscode/settings.json vendored
View File

@@ -51,6 +51,26 @@
"stdexcept": "cpp",
"streambuf": "cpp",
"typeinfo": "cpp",
"cassert": "cpp"
"cassert": "cpp",
"bitset": "cpp",
"charconv": "cpp",
"chrono": "cpp",
"codecvt": "cpp",
"condition_variable": "cpp",
"cstring": "cpp",
"ratio": "cpp",
"mutex": "cpp",
"semaphore": "cpp",
"span": "cpp",
"stop_token": "cpp",
"thread": "cpp",
"variant": "cpp",
"format": "cpp",
"__nullptr": "cpp",
"__bit_reference": "cpp",
"__hash_table": "cpp",
"__string": "cpp",
"queue": "cpp",
"stack": "cpp"
}
}