Skip to content

Commit 6a44924

Browse files
committed
delete temp-files
1 parent dd976f6 commit 6a44924

29 files changed

+82
-12
lines changed

.vscode/c_cpp_properties.json

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"configurations": [{
3+
"name": "Mac",
4+
"includePath": [
5+
"/usr/include",
6+
"/usr/local/include"
7+
],
8+
"browse": {
9+
"limitSymbolsToIncludedHeaders": true,
10+
"databaseFilename": ""
11+
}
12+
},
13+
{
14+
"name": "Linux",
15+
"includePath": [
16+
"/usr/include",
17+
"/usr/local/include"
18+
],
19+
"browse": {
20+
"limitSymbolsToIncludedHeaders": true,
21+
"databaseFilename": ""
22+
}
23+
},
24+
{
25+
"name": "Win32",
26+
"includePath": [
27+
"C:/Program Files (x86)/Microsoft Visual Studio 14.0/VC/include/*"
28+
],
29+
"browse": {
30+
"limitSymbolsToIncludedHeaders": true,
31+
"databaseFilename": ""
32+
}
33+
}
34+
]
35+
}

.vscode/launch.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "C++ Launch (Windows)",
6+
"type": "cppvsdbg",
7+
"request": "launch",
8+
"program": "enter program name, for example ${workspaceRoot}/a.exe",
9+
"args": [],
10+
"stopAtEntry": false,
11+
"cwd": "${workspaceRoot}",
12+
"environment": [],
13+
"externalConsole": false
14+
},
15+
{
16+
"name": "C++ Attach (Windows)",
17+
"type": "cppvsdbg",
18+
"request": "attach",
19+
"processId": "${command:pickProcess}"
20+
}
21+
]
22+
}

.vscode/tasks.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
// See https://go.microsoft.com/fwlink/?LinkId=733558
3+
// for the documentation about the tasks.json format
4+
"version": "0.1.0",
5+
"command": "echo",
6+
"isShellCommand": true,
7+
"args": ["Hello World"],
8+
"showOutput": "always"
9+
}

codeforces/cpp/ChatOrder.exe

-994 KB
Binary file not shown.

codeforces/cpp/ChatOrder.o

-25.5 KB
Binary file not shown.

codeforces/cpp/ChatOrderv02.exe

-990 KB
Binary file not shown.

codeforces/cpp/ChatOrderv02.o

-18.7 KB
Binary file not shown.

codeforces/cpp/Duff and Meat.exe

-980 KB
Binary file not shown.

codeforces/cpp/Duff and Meat.o

-4.38 KB
Binary file not shown.

codeforces/cpp/Magic Spheres.exe

-26.9 KB
Binary file not shown.

codeforces/cpp/Magic Spheres.o

-1.14 KB
Binary file not shown.
-27.1 KB
Binary file not shown.
-1.37 KB
Binary file not shown.
-27.1 KB
Binary file not shown.
-1.48 KB
Binary file not shown.
-27.7 KB
Binary file not shown.
-1.79 KB
Binary file not shown.

codeforces/cpp/Next Round.exe

-26.9 KB
Binary file not shown.

codeforces/cpp/Next Round.o

-918 Bytes
Binary file not shown.

codeforces/cpp/Watermelon.exe

-26.9 KB
Binary file not shown.

codeforces/cpp/Watermelon.o

-750 Bytes
Binary file not shown.

codeforces/cpp/Way Too Long Words.exe

-29.2 KB
Binary file not shown.

codeforces/cpp/Way Too Long Words.o

-1.25 KB
Binary file not shown.

codeforces/cpp/test-hello.cpp

Lines changed: 0 additions & 5 deletions
This file was deleted.

codeforces/cpp/test_unsign.exe

-26.9 KB
Binary file not shown.

codeforces/cpp/test_unsign.o

-690 Bytes
Binary file not shown.

codeforces/cpp/testnew.cpp

Lines changed: 0 additions & 7 deletions
This file was deleted.

programming-in-th/0011.h

Whitespace-only changes.

programming-in-th/1003.cpp

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
using namespace std;
2+
#include <iostream>
3+
#include <algorithm>
4+
#include <vector>
5+
main(){
6+
vector<int> con;
7+
int a=6,b=9,c=20,max_var=6;
8+
int n,i=0;
9+
cin >> n;
10+
do{
11+
12+
if(max_var < a || max_var < b || max_var < c)
13+
14+
}while(max_var <= n);
15+
}
16+

0 commit comments

Comments
 (0)