mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
443 B
32 lines
443 B
5 years ago
|
package main
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"os"
|
||
|
"strings"
|
||
|
)
|
||
|
|
||
5 years ago
|
func deleteExtraSpaces(a []string) []string {
|
||
5 years ago
|
var res []string
|
||
5 years ago
|
for _, v := range a {
|
||
5 years ago
|
if v != "" {
|
||
|
res = append(res, v)
|
||
|
}
|
||
|
}
|
||
|
return res
|
||
|
}
|
||
|
|
||
|
func main() {
|
||
|
if len(os.Args) == 2 {
|
||
|
words := strings.Split(os.Args[1], " ")
|
||
|
words = deleteExtraSpaces(words)
|
||
|
if len(words) >= 1 {
|
||
|
for _, v := range words[1:] {
|
||
|
fmt.Print(v, " ")
|
||
|
}
|
||
|
fmt.Print(words[0])
|
||
|
}
|
||
|
}
|
||
|
fmt.Println()
|
||
|
}
|