add hw6 solution

This commit is contained in:
JamesFlare1212
2025-03-20 02:06:13 -04:00
parent 45ee58bda2
commit 54016a2693
6 changed files with 404 additions and 6 deletions

16
.vscode/launch.json vendored
View File

@@ -88,6 +88,22 @@
"MIMode": "gdb",
"miDebuggerPath": "/usr/bin/gdb",
"preLaunchTask": "C/C++: g++ build active file"
},
{
"name": "inverse_word_search",
"type": "cppdbg",
"request": "launch",
"program": "${fileDirname}/${fileBasenameNoExtension}",
"args": [
"puzzle3.txt",
"output.txt",
"all_solutions"
],
"cwd": "${fileDirname}",
"environment": [],
"MIMode": "gdb",
"miDebuggerPath": "/usr/bin/gdb",
"preLaunchTask": "C/C++: g++ build active file"
}
]
}

View File

@@ -71,6 +71,8 @@
"__hash_table": "cpp",
"__string": "cpp",
"queue": "cpp",
"stack": "cpp"
"stack": "cpp",
"set": "cpp",
"climits": "cpp"
}
}