(s string, n int)
| 131 | } |
| 132 | |
| 133 | func repeatStr(s string, n int) string { |
| 134 | result := "" |
| 135 | var resultSb134 strings.Builder |
| 136 | for i := 0; i < n; i++ { |
| 137 | resultSb134.WriteString(s) |
| 138 | } |
| 139 | result += resultSb134.String() |
| 140 | return result |
| 141 | } |
no test coverage detected