Skip to content

Commit 118eaaa

Browse files
.
1 parent 4ad6ed8 commit 118eaaa

File tree

36 files changed

+109
-0
lines changed

36 files changed

+109
-0
lines changed

.vscode/c_cpp_properties.json

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"configurations": [
3+
{
4+
"name": "windows-gcc-x86",
5+
"includePath": [
6+
"${workspaceFolder}/**"
7+
],
8+
"compilerPath": "C:/MinGW64/bin/gcc.exe",
9+
"cStandard": "${default}",
10+
"cppStandard": "${default}",
11+
"intelliSenseMode": "windows-gcc-x86",
12+
"compilerArgs": [
13+
""
14+
]
15+
}
16+
],
17+
"version": 4
18+
}

.vscode/launch.json

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "C/C++ Runner: Debug Session",
6+
"type": "cppdbg",
7+
"request": "launch",
8+
"args": [],
9+
"stopAtEntry": false,
10+
"externalConsole": true,
11+
"cwd": ".",
12+
"program": "build/Debug/outDebug",
13+
"MIMode": "gdb",
14+
"miDebuggerPath": "gdb",
15+
"setupCommands": [
16+
{
17+
"description": "Enable pretty-printing for gdb",
18+
"text": "-enable-pretty-printing",
19+
"ignoreFailures": true
20+
}
21+
]
22+
}
23+
]
24+
}

.vscode/settings.json

+59
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
{
2+
"C_Cpp_Runner.cCompilerPath": "gcc",
3+
"C_Cpp_Runner.cppCompilerPath": "g++",
4+
"C_Cpp_Runner.debuggerPath": "gdb",
5+
"C_Cpp_Runner.cStandard": "",
6+
"C_Cpp_Runner.cppStandard": "",
7+
"C_Cpp_Runner.msvcBatchPath": "C:/Program Files/Microsoft Visual Studio/VR_NR/Community/VC/Auxiliary/Build/vcvarsall.bat",
8+
"C_Cpp_Runner.useMsvc": false,
9+
"C_Cpp_Runner.warnings": [
10+
"-Wall",
11+
"-Wextra",
12+
"-Wpedantic",
13+
"-Wshadow",
14+
"-Wformat=2",
15+
"-Wcast-align",
16+
"-Wconversion",
17+
"-Wsign-conversion",
18+
"-Wnull-dereference"
19+
],
20+
"C_Cpp_Runner.msvcWarnings": [
21+
"/W4",
22+
"/permissive-",
23+
"/w14242",
24+
"/w14287",
25+
"/w14296",
26+
"/w14311",
27+
"/w14826",
28+
"/w44062",
29+
"/w44242",
30+
"/w14905",
31+
"/w14906",
32+
"/w14263",
33+
"/w44265",
34+
"/w14928"
35+
],
36+
"C_Cpp_Runner.enableWarnings": true,
37+
"C_Cpp_Runner.warningsAsError": false,
38+
"C_Cpp_Runner.compilerArgs": [],
39+
"C_Cpp_Runner.linkerArgs": [],
40+
"C_Cpp_Runner.includePaths": [],
41+
"C_Cpp_Runner.includeSearch": [
42+
"*",
43+
"**/*"
44+
],
45+
"C_Cpp_Runner.excludeSearch": [
46+
"**/build",
47+
"**/build/**",
48+
"**/.*",
49+
"**/.*/**",
50+
"**/.vscode",
51+
"**/.vscode/**"
52+
],
53+
"C_Cpp_Runner.useAddressSanitizer": false,
54+
"C_Cpp_Runner.useUndefinedSanitizer": false,
55+
"C_Cpp_Runner.useLeakSanitizer": false,
56+
"C_Cpp_Runner.showCompilationTime": false,
57+
"C_Cpp_Runner.useLinkTimeOptimization": false,
58+
"C_Cpp_Runner.msvcSecureNoWarnings": false
59+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#include <iostream>
2+
using namespace std;
3+
4+
int main(int argc, char const *argv[])
5+
{
6+
7+
return 0;
8+
}

Leetcode contests/02-Biweekly Contest 125/1-Min_operations_to_exceed_threshold-I.cpp

Whitespace-only changes.

Leetcode contests/02-Biweekly Contest 125/2-Min_operations_to_exceed_threshold-II.cpp

Whitespace-only changes.

Leetcode contests/02-Biweekly Contest 125/3-Count_pairs_of_connectable_servers.cpp

Whitespace-only changes.

Leetcode contests/02-Biweekly Contest 125/4-Find_max_sum_of_node_values.cpp

Whitespace-only changes.

Leetcode contests/03-Weekly contest 387/1-Distribute_elements_into_two_arr-I.cpp

Whitespace-only changes.

Leetcode contests/03-Weekly contest 387/2-Count_submatrices_with_top-left_element.cpp

Whitespace-only changes.

Leetcode contests/03-Weekly contest 387/3-Min_operations_to_write_letter_Y.cpp

Whitespace-only changes.

Leetcode contests/03-Weekly contest 387/4-Distribute_elements_into_two_arr-II.cpp

Whitespace-only changes.

Leetcode contests/04-Biweekly Contest 126/1-Find_sum_of_encrypted_int.cpp

Whitespace-only changes.

Leetcode contests/04-Biweekly Contest 126/2-Mark_elements_on_arr_by_performing_queries.cpp

Whitespace-only changes.

Leetcode contests/04-Biweekly Contest 126/3-Replace_question_marks_in_string.cpp

Whitespace-only changes.

Leetcode contests/04-Biweekly Contest 126/4-Find_sum_of_power_of_all_subsequences.cpp

Whitespace-only changes.

Leetcode contests/05-Weekly Contest 390/1-Max_length_substring_with_two_occurrences.cpp

Whitespace-only changes.

Leetcode contests/05-Weekly Contest 390/2-Apply_operations_to_make_sum_greater_than_k.cpp

Whitespace-only changes.

Leetcode contests/05-Weekly Contest 390/3-Most_frequent_ID.cpp

Whitespace-only changes.

Leetcode contests/05-Weekly Contest 390/4-Longest_common_suffix_query.cpp

Whitespace-only changes.

Leetcode contests/06-Biweekly Contest 130/1-Check_if_grid_satisfies_conditions.cpp

Whitespace-only changes.

Leetcode contests/06-Biweekly Contest 130/2-Max_points_inside_square.cpp

Whitespace-only changes.

Leetcode contests/06-Biweekly Contest 130/3-Min_substring_partition_of_equal_character_freq.cpp

Whitespace-only changes.

Leetcode contests/06-Biweekly Contest 130/4-Find_products_of_elements_of_big_arr.cpp

Whitespace-only changes.

Leetcode contests/07-Weekly Contest 397/1-Permutation_difference_two_strings.cpp

Whitespace-only changes.

Leetcode contests/07-Weekly Contest 397/2-Max_energy_from_dragon.cpp

Whitespace-only changes.

Leetcode contests/07-Weekly Contest 397/3-Max_diff_score_in_grid.cpp

Whitespace-only changes.

Leetcode contests/07-Weekly Contest 397/4-Find_min_cost_array_permutation.cpp

Whitespace-only changes.

Leetcode contests/08-Biweekly Contest 131/1-Find_XOR_of_nums.cpp

Whitespace-only changes.

Leetcode contests/08-Biweekly Contest 131/2-Find_occurrence_of_element_in_arr.cpp

Whitespace-only changes.

Leetcode contests/08-Biweekly Contest 131/3-Find_num_of_distinct_colors.cpp

Whitespace-only changes.

Leetcode contests/08-Biweekly Contest 131/4-Block_placement_queries.cpp

Whitespace-only changes.

Leetcode contests/09-Weekly Contest 399/1-Find_num_of_good_pairs-I.cpp

Whitespace-only changes.

Leetcode contests/09-Weekly Contest 399/2-String_compression_III.cpp

Whitespace-only changes.

Leetcode contests/09-Weekly Contest 399/3-Find_num_of_good_pairs-II.cpp

Whitespace-only changes.

Leetcode contests/09-Weekly Contest 399/4-Max_sum_of_subsequence.cpp

Whitespace-only changes.

0 commit comments

Comments
 (0)