...

/

Solution: Benchmarking Functions

Solution: Benchmarking Functions

See the solution for how to expand the colStats tool.

We'll cover the following...

Solution Explanation

In the main.go file and function run(), add the following:

Press + to interact
case "min":
opFunc = min
case "max":
opFunc = max

We’ve simply introduced new functions as options above, ...