https://github.com/simonskodt/aldes-red-scare
Final Mandatory assignment in Algorithm Design
https://github.com/simonskodt/aldes-red-scare
Last synced: about 1 month ago
JSON representation
Final Mandatory assignment in Algorithm Design
- Host: GitHub
- URL: https://github.com/simonskodt/aldes-red-scare
- Owner: simonskodt
- License: mit
- Created: 2023-11-08T08:23:17.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-30T08:49:58.000Z (over 2 years ago)
- Last Synced: 2025-02-23T05:13:41.508Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 6.57 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Red Scare
This repository contains the implementation of various algorithmic paradigms for
the mandatory assignment in Algorithm Design. The focus is on choosing and utilizing
well-known algorithmic paradigms, rather than implementing them from scratch.
## How to Run
To ensure you have the necessary dependencies, execute the following command:
```bash
pip install -r requirements.txt
```
All the programs for solving different problems are organized into separate classes
under the `problems` directory.
To generate the `results.txt` file, run the following command:
```bash
python main.py --all
```
This command will create the result file.
If you wish to run the programs on a specific file, use the following command:
```bash
python main.py --file FILENAME
```
For a comprehensive description of available options, refer to the help command:
```bash
python main.py --help
```