- 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
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.
Take a look at Code of Conduct.