V. K.

Results 1 issues of V. K.

In `src/benchmark/main.go` replace: ````golang startedAt := time.Now().UnixNano() f() finishedAt := time.Now().UnixNano() fmt.Printf("Action: %s, took: %d microseconds \n\n", actionName, (finishedAt - startedAt) / 1000) ```` with using `time.Since` function.