QuackatronHQ / Gigarepo

Simplify slice expression to sliced value itself CRT-A0016
Anti-pattern
Major
a month ago2 years old
could simplify s[:] to s
79}
80
81func join(s []string) string {
82	return strings.Join(s[:], " ")83}
84
85func swap(a, b int) (int, int) {