(s string, n int)
| 322 | } |
| 323 | |
| 324 | func repeatStr(s string, n int) string { |
| 325 | result := "" |
| 326 | var resultSb325 strings.Builder |
| 327 | for range n { |
| 328 | resultSb325.WriteString(s) |
| 329 | } |
| 330 | result += resultSb325.String() |
| 331 | return result |
| 332 | } |
no test coverage detected