An open API service indexing awesome lists of open source software.

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

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.