This repository consists of solutions to various LeetCode questions. Some questions have solutions in multiple languages. Inorder to contribute to this repository, you need to follow the following rules:
The directory structure of this repository is as follows:
[Question Name] -> [Programming Language] -> [Code]
The first folder {Question Name} must be named on the question. Keep in mind to select a understandable title for the question. Examples of this folder names are as follows:
- Two Sum Problem
- Text Justification Problem etc
This folder will consist of the Readme.md file. This Readme.md file will have the description of the question including the expected outputs. You can also add your test case accuracies (but not required). You can copy the Readme.md template from any of the existing folders and make changes to that.
This folder will then have a sub-folder {Programming Language}. It can also have mutiple sub folders
This folder's name should be the Programming Language that you used for your solutions. This folder will consist of the solution file. The examples of folder names are as follows:
- Python
- C++
- Java
!!!! TO BE UPDATED !!!!