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 = mincase "max":opFunc = max
We’ve simply introduced new functions as options above, ...