Skip to content

Added instruction's on how to contribute in the repo #14

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 22 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@

# Algorithms
Data Structure Libraries and Algorithms implementation in C++

**Disclaimer**<br />
**Disclaimer** <br/>
This repository is meant to be used as a reference to learn data structure and
algorithm.

Expand Down Expand Up @@ -63,5 +64,24 @@ algorithm.
* [comb sort](https://en.wikipedia.org/wiki/Comb_sort)

## Contribution
Feel Free to contribute.<br />
Feel Free to contribute.
* Fork this repository (Click the Fork button in the top right of this page, click your Profile Image)
* Clone your fork down to your local machine
```markdown
git clone <url> (given in clone or download button)
```
* Create a branch
```markdown
git checkout -b branch-name
```
* Make your changes (add algorithm)
* Commit and Push
```markdown
git add .
git commit -m 'commit message'
git push origin branch-name
```
* Create a New Pull Request from your forked repository (Click the New Pull Request button located at the top of your repo)


Please follow standard C++ Guidelines.