In this project, I solved algorithm-related challenges and practiced concepts such as algorithm complexity and recursivity.
In this project, I was able to:
- Analise algorithms' complexity;
- Optimize algorithms;
- Exercise my capability of solving problems;
- Implement recursive solutions.
Python | Pytest |
---|---|
|
|
- Clone the repository and enter it
git clone git@github.com:ImVictorM/Algorithms.git && cd Algorithms
- Create the virtual environment
python3 -m venv .venv && source .venv/bin/activate
- Install the dependencies
python3 -m pip install -r dev-requirements.txt
To run all tests:
python3 -m pytest
Running only one test file:
python3 -m pytest {test_file_path}.py