https://github.com/mhmdsami/dsa
Data Structures and Algorithms
https://github.com/mhmdsami/dsa
algorithms data-structures
Last synced: 3 months ago
JSON representation
Data Structures and Algorithms
- Host: GitHub
- URL: https://github.com/mhmdsami/dsa
- Owner: mhmdsami
- Created: 2022-08-19T14:38:56.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-10-23T13:50:16.000Z (over 3 years ago)
- Last Synced: 2023-03-06T21:47:34.658Z (about 3 years ago)
- Topics: algorithms, data-structures
- Language: C
- Homepage:
- Size: 26.4 KB
- Stars: 0
- Watchers: 1
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Data Structures and Algorithms
## :information_source: Why does this exists?
This repo contains the logic to solve the problems on e-Lab,
keep in mind that these are not the solutions to yield 100% but rather the implementation of the logic.
I highly encourage you to try solving the problems before looking at the solution from this repo.
## :handshake: Contributing Guide
If you have a solution to a problem that does not exist, feel free to make a PR! or if you find a mistake, create an Issue!
### Steps to contribute
- Create a [fork](https://github.com/mhmdsami/dsa/fork) of this repo.
- Clone it locally!
```
git clone https://github.com//dsa
```
- Add your solution in the correct directory ```/```
For example, if you are adding a solution to a question in level 2 of Sorting, add it to ```Sorting/Level_2```. The directory must be ```UPPER_SNAKE_CASE```
- Name your file descriptively, look into the already existing files to get an idea. File names must be in ```kebab-case```
- It is preferred that you run your code through prettier.
- Push the changes to your fork and make a PR! Make sure to include a screenshot of the question and the output.