Solution: Benchmarking Functions
See the solution for how to expand the colStats tool.
We'll cover the following...
We'll cover the following...
Solution Explanation
In the main.go file and function run(), add the following:
case "min":opFunc = mincase "max":opFunc = max
We’ve simply introduced new functions as options above, and the functions will be written in csv.go file.
The two ...