From 3e79ef41cefec10e7f46b184907edffb13c2ecff Mon Sep 17 00:00:00 2001 From: crupest Date: Sat, 27 Mar 2021 15:42:14 +0800 Subject: import(life): Add algorithm contest 3. --- works/life/.vscode/launch.json | 17 +++++++++++++++++ works/life/.vscode/settings.json | 3 +++ 2 files changed, 20 insertions(+) create mode 100644 works/life/.vscode/launch.json create mode 100644 works/life/.vscode/settings.json (limited to 'works/life/.vscode') diff --git a/works/life/.vscode/launch.json b/works/life/.vscode/launch.json new file mode 100644 index 0000000..584e971 --- /dev/null +++ b/works/life/.vscode/launch.json @@ -0,0 +1,17 @@ +{ + // 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": "Debug", + "type": "gdb", + "request": "launch", + "target": "./a.out", + "cwd": "${workspaceRoot}", + "valuesFormatting": "parseText", + "terminal": "konsole" + } + ] +} diff --git a/works/life/.vscode/settings.json b/works/life/.vscode/settings.json new file mode 100644 index 0000000..cad7657 --- /dev/null +++ b/works/life/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "cmake.configureOnOpen": false +} \ No newline at end of file -- cgit v1.2.3