We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
0 parents commit a4a7cf2Copy full SHA for a4a7cf2
.editorconfig
@@ -0,0 +1,26 @@
1
+# EditorConfig is awesome: http://EditorConfig.org
2
+
3
+# top-most EditorConfig file
4
+root = true
5
6
+# Unix-style newlines with a newline ending every file
7
+[*]
8
+charset = utf-8
9
+indent_style = space
10
+indent_size = 4
11
+end_of_line = lf
12
+insert_final_newline = true
13
+trim_trailing_whitespace = true
14
15
+[*.yml]
16
+indent_size = 2
17
18
+[*.js]
19
20
21
+[*.{h,c,cpp,cc}]
22
23
24
+# Tab indentation (no size specified)
25
+[Makefile]
26
+indent_style = tab
.gitignore
@@ -0,0 +1,16 @@
+# vscode
+.vscode
+# Mac
+.DS_Store
+._.DS_Store
+# pyenv
+venv/
+.venv/
+# python
+*.pyc
+*.pro
+*~
+__pycache__
README.md
@@ -0,0 +1 @@
+# LeetCode
0 commit comments