Skip to content

Commit c822fb4

Browse files
committed
Codeforces 1501 D
1 parent f73ce4a commit c822fb4

24 files changed

+245
-60
lines changed

Codeforces/1501/.catalyst/43435522bdc924c6546ccc5b898795c0.catalyst

Lines changed: 0 additions & 1 deletion
This file was deleted.

Codeforces/1501/.catalyst/78931b5b66632f7c6782d33277f5a66e.catalyst

Lines changed: 0 additions & 1 deletion
This file was deleted.

Codeforces/1501/.catalyst/7974a0ba1b2001653a32bc48fd998f63.catalyst

Lines changed: 0 additions & 1 deletion
This file was deleted.

Codeforces/1501/.catalyst/bb0eaa6e85a86d9b22be0c6e1d092a94.catalyst

Lines changed: 0 additions & 1 deletion
This file was deleted.

Codeforces/1501/.catalyst/e3c4072a681f4fca53273c07c8ac13c4.catalyst

Lines changed: 0 additions & 1 deletion
This file was deleted.

Codeforces/1501/.catalyst/ed6676b01090a438e5ade8cddb704d26.catalyst

Lines changed: 0 additions & 1 deletion
This file was deleted.

Codeforces/1501/.vscode/launch.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "clang++ - Build and debug active file v1.0",
9+
"type": "cppdbg",
10+
"request": "launch",
11+
"program": "${fileDirname}/${fileBasenameNoExtension}",
12+
"args": [],
13+
"stopAtEntry": false,
14+
"cwd": "${workspaceFolder}",
15+
"environment": [],
16+
"externalConsole": false,
17+
"MIMode": "lldb",
18+
"preLaunchTask": "clang++ build active file v1.0"
19+
}
20+
]
21+
}

Codeforces/1501/.vscode/tasks.json

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{
2+
// See https://go.microsoft.com/fwlink/?LinkId=733558
3+
// for the documentation about the tasks.json format
4+
"version": "2.0.0",
5+
"tasks": [
6+
{
7+
"label": "echo",
8+
"type": "shell",
9+
"command": "echo Hello"
10+
},
11+
{
12+
"type": "shell",
13+
"label": "clang++ build active file v1.0",
14+
"command": "/usr/bin/clang++",
15+
"args": [
16+
"-D LOCAL",
17+
"-std=c++17",
18+
"-stdlib=libc++",
19+
"-g",
20+
"${file}",
21+
"-o",
22+
"${fileDirname}/${fileBasenameNoExtension}"
23+
],
24+
"options": {
25+
"cwd": "${workspaceFolder}"
26+
},
27+
"problemMatcher": [
28+
"$gcc"
29+
],
30+
"group": {
31+
"kind": "build",
32+
"isDefault": true
33+
}
34+
}
35+
]
36+
}

0 commit comments

Comments
 (0)