You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+5-6Lines changed: 5 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -3,8 +3,8 @@
3
3
4
4
Solutions from these languages will be linked from[NeetCode.io](https://neetcode.io):
5
5
6
-
* Python (complete)
7
-
* C++ (complete)
6
+
* Python
7
+
* C++
8
8
* Java
9
9
* Javascript
10
10
@@ -17,9 +17,8 @@ If you would like to have collaborator permissions on the repo to merge your own
17
17
##Contributing Guidelines
18
18
19
19
-**Match the casing of files and directories**
20
-
- For files, it's**`<language>/<problem-set>/<category>/<problem-number>_name_of_problem.<language-extension>`** (e.g.`java/neetcode_150/01_arrays_&_hashing/0001_two_sum.java`)
21
-
- Please add the appropriate number of preceding zeros to the problem number, to ensure files get sorted properly (e.g.`0001`,`0012`,`0123`,`1234`)
22
-
- Please take the problem name from the URL of the problem, as[described in this issue](https://github.com/neetcode-gh/leetcode/issues/457#issuecomment-1233558291)
20
+
- For files, it's**`<language>/<problem-number>-Name-Of-Problem.<language-extension>`** (e.g.`java/1-Two-Sum.java`)
21
+
-*Note: This is subject to change in the future, as[described in this issue](https://github.com/neetcode-gh/leetcode/issues/457#issuecomment-1233558291)*
23
22
-**Give your PR a succinct and accurate title** (e.g._"Create: 1-Two-Sum.py"_)
24
23
- Prefer**one solution/change per PR** (not a hard and fast rule, but will typically make the review cycle shorter)
25
24
-**Follow the**[PR template](./.github/pull_request_template.md) and add additional information when needed
@@ -44,7 +43,7 @@ If you would like to have collaborator permissions on the repo to merge your own
44
43
**A:** Leetcode's runtime measurement can be severely inaccurate varying based on server load, time of day and many other factors. In general, readability and clarity of the code (in the context of interviews) are features more important than performance gains, however changes that transparently improve performance will be accepted.
45
44
##
46
45
47
-
**Q:** What if the problem I want to add isn't in the Neetcode 150 list(Missing Solutions table)?
46
+
**Q:** What if the problem I want to add isn't in the Neetcode 150 listorMissing Solutions table?
48
47
49
48
**A:** Questions outside of the Neetcode 150 list can be added but please prioritise adding the listed solutions first.