blob: eb5712efd3202ef9a9aeb12e6b94dff9841301c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
Algorithms
==========
# Introduction
This includes exercises from the Algorithms lecture.
How to set-up:
1. Set GOPATH, e.g. ~/go
2. Copy algorithms repo to $GOPATH/src/algorithms
Now you are set. We are not using this as a Go module yet.
# Testing
For unit tests run:
``make test``
# Benchmarking
For running benchmars run:
``make bench``
|