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.

27 lines
719 B

## swap-name
### Instructions
Write a program that takes two words in the first argument and swaps them.
- If the number of arguments is not 2, nothing should be printed.
2 years ago
- The first argument should contain only alphabetic characters and spaces and only two word, if not, print `"Error\n"`
2 years ago
- Print the result with a new line at the end (`'\n'`).
2 years ago
- Trim space in the beginning and end of the string
### Usage
```console
$ go run . | cat -e
$ go run . "Hello World" "Hello World" | cat -e
$ go run . "Hello World" | cat -e
World Hello$
$ go run . "He2 $%hello" | cat -e
Error$
2 years ago
$ go run . " Hello World " | cat -e
World Hello$
$ go run . "Hello World Hello" | cat -e
Error$
2 years ago
$ go run . "Hello" | cat -e
Error$
2 years ago
```