This repository contains my solutions to the problems on AlgoExpert, a platform for preparing for coding interviews. The solutions are organized by difficulty: Easy, Medium, Hard, and Very Hard.
To get started, clone this repository to your local machine using the following command:
git clone https://github.com/nishanth-s-dev/AlgoExpert.git
AlgoExpert/
├── README.md
├── python/
│ ├── category_one/
│ │ ├── easy/
│ │ │ ├── problem_one.py
│ │ │ └── problem_two.py
│ │ ├── medium/
│ │ │ ├── problem_one.py
│ │ │ └── problem_two.py
│ │ ├── hard/
│ │ │ ├── problem_one.py
│ │ │ └── problem_two.py
│ │ ├── very-hard/
│ │ │ ├── problem_one.py
│ │ │ └── problem_two.py
│ ├── category_two/
│ │ ├── easy/
│ │ │ ├── problem_one.py
│ │ │ └── problem_two.py
│ │ ├── medium/
│ │ │ ├── problem_one.py
│ │ │ └── problem_two.py
│ │ ├── hard/
│ │ │ ├── problem_one.py
│ │ │ └── problem_two.py
│ │ ├── very-hard/
│ │ │ ├── problem_one.py
│ │ │ └── problem_two.py
└── resources/
└── notes.m
To run a solution, ensure you have Python installed. You can execute any solution by navigating to its folder and running:
python path/to/your/file.py
This project is licensed under the MIT License. See the LICENSE file for details.
Feel free to fork this repository and add your own solutions, including in other languages! If you have suggestions for improvements or corrections, please open an issue or submit a pull request.