An open API service indexing awesome lists of open source software.

https://github.com/perongh/comp202-toolkit

Utilities for solving common problems in COMP202.
https://github.com/perongh/comp202-toolkit

Last synced: about 2 months ago
JSON representation

Utilities for solving common problems in COMP202.

Awesome Lists containing this project

README

        

# COMP202 Toolkit

Utilities for solving common problems in COMP202.

## Usage

1. Install Go and clone this repository.
2. Based on the problem you are solving, you can use the following utilities:
- **Count inversions**: `go run ./count-inversions`
- **Apply master theorem**: `go run ./master-theorem`
- **Fractional knapsack**: `go run ./fractional-knapsack`
- **0/1 knapsack**: `go run ./01-knapsack`
- **Array Heap**: `go run ./array-heap`