Skip to content

Commit a4a7cf2

Browse files
committed
Initial commit
0 parents  commit a4a7cf2

File tree

3 files changed

+43
-0
lines changed

3 files changed

+43
-0
lines changed

.editorconfig

+26
Original file line numberDiff line numberDiff line change
@@ -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+
indent_size = 2
20+
21+
[*.{h,c,cpp,cc}]
22+
indent_size = 2
23+
24+
# Tab indentation (no size specified)
25+
[Makefile]
26+
indent_style = tab

.gitignore

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# vscode
2+
.vscode
3+
4+
# Mac
5+
.DS_Store
6+
._.DS_Store
7+
8+
# pyenv
9+
venv/
10+
.venv/
11+
12+
# python
13+
*.pyc
14+
*.pro
15+
*~
16+
__pycache__

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# LeetCode

0 commit comments

Comments
 (0)