Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/simonskodt/aldes-red-scare
Final Mandatory assignment in Algorithm Design
https://github.com/simonskodt/aldes-red-scare
Last synced: 6 days 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 (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-30T08:49:58.000Z (12 months ago)
- Last Synced: 2023-11-30T13:51:59.525Z (12 months 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
```