ЕО
Size: a a a
ЕО
ВС
GS
ЕО
GS
с
for _, person := range generatePersons() {
notify := Notify{
fmt.Sprintf("Hello %s", person.Name),
&person,
}
notifies = append(notifies, notify)
}с
с
persons := generatePersons()
n := len(persons)
var person Person
for i := 0; i < n; i++ {
person = persons[i]
notify := Notify{
fmt.Sprintf("Hello %s", person.Name),
&person,
}
notifies = append(notifies, notify)
}ЕК
с
ЕО
с
strconv.QuoteЕК
strconv.QuoteGS
for _, person := range generatePersons() {
notify := Notify{
fmt.Sprintf("Hello %s", person.Name),
&person,
}
notifies = append(notifies, notify)
}с
GS
ЕК
strconv.Quoteн
ВС