docs: add contribution-guidelines

pull/11/head
Ming Tsai 2021-01-15 09:52:11 -04:00 committed by GitHub
parent a02c39079e
commit 95b9677592
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 26 additions and 1 deletions

View File

@ -1,5 +1,30 @@
# Data Structures and Algorithm # Data Structures and Algorithm
DSA contributions Data structure and Algorithm (DSA)
## Contribution Guidelines
### 1. Folders or files naming
The folder or file should have the below conditions:
- The name should be in lower case.
- The word should be separate with a **dash(-)**.
- It can only contain **dash(-)** it cannot have other specific characters.
- A new file should add to the **index(README.md)**.
For example:
```
DSA
| searching
| readme.md -> should create an readme for the index
| c-or-cpp
| linear-search.cpp
| binary-search.cpp
| python
| linear-search.py
| binary-search.py
| csharp
| linear-search.cs
| binary-search.cs
```
### 2. Naming Convention
The programming should keep the naming convention rule of each programming language
## License ## License
[MIT](./LICENSE) [MIT](./LICENSE)