This repository contains exercises and examples for learning Data structure and algorithm.
You may follow instructions, if you want to run code using docker.
- Docker installed on your machine
- Basic knowledge of command line interface
-
Clone the repository:
git clone https://github.com/abdulmajidcse/data-structure-and-algorithm cd data-structure-and-algorithm
-
Run this command to build image and container or if you have any changes:
docker-compose up --build
-
You may run this command when you need to execute your code and then you see a linux based terminal.
docker-compose run --rm dsa
-
You may run php, node, and python3 command via this linux based terminal. For example, you have three files called test.py, test.php, and test.js and you want to run these files.
python3 test.py php test.php node test.js