Merge pull request #697 from frankbraun/spaces

Implement Spaces() with with strings.Repeat()
This commit is contained in:
Zachary Yedidia
2017-06-14 15:58:32 -04:00
committed by GitHub

View File

@@ -36,11 +36,7 @@ func NumOccurrences(s string, c byte) int {
// Spaces returns a string with n spaces
func Spaces(n int) string {
var str string
for i := 0; i < n; i++ {
str += " "
}
return str
return strings.Repeat(" ", n)
}
// Min takes the min of two ints