Skip to content

Latest commit

 

History

History
55 lines (47 loc) · 2.29 KB

README.md

File metadata and controls

55 lines (47 loc) · 2.29 KB


PRs Welcome GitHub pull requests GitHub issues Github All Contributors

Folder Structure & Naming Convention

  • Create a folder for your algorithm inside the folder of your preferred language (cpp, python, java,... etc)
  • Please follow camelCase for naming of all your folders and files
  • General Folder Structure
/root
  └── <LANGUAGE folder>
          └──<ALGORITHM folder>
                    ├── README.md (file)
                    └── <ALGORITHM.LANGUAGE> (file)
  • Example
/root
  ├── cpp
  │    └── bubbleSort
  │            ├── README.md
  │            └── bubbleSort.cpp
  │── python
  │     └── bubbleSort
  │            ├── README.md
  │            └── bubbleSort.py

Contribution Guidelines

We'd love to have your contribution in our project. Please discuss it with us first by creating new issue. You can take a look at the Contribution Guidelines.

Our Contributors

Contributors

Code of Conduct

Take a look at Code of Conduct.