FA66V7P7ENLCARP3JGRCDJIM6LGYZD2XZUBYDY5T56DSHAEAS73QC
/*
Package accumulate is a wrapper package for various string converting operations.
*/
package accumulate
// Accumulate expects strings to call the function passed in the second argument on them.
func Accumulate(collection []string, operation func(string) string) (result []string) {
result = make([]string, len(collection))
for k, v := range collection {
result[k] = operation(v)
}
return
}
// I am pretty sure that I do not understand this task.