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.

31 lines
715 B

2 years ago
## argsort
2 years ago
2 years ago
### Instructions
2 years ago
Write a program where you define if an argument is sorted or not sorted:
2 years ago
- Your Program should return `T` if an argument is sorted.
- Your Program should return `F` if an argument is not sorted.
2 years ago
- If The argument is empty nothing will be printed.
2 years ago
- If the number of arguments is not 1 Print (`'\n'`).
- If the length argument is equal to 1 Print(`'\n'`).
- Your program should always print (`'\n'`) at the end of the output.
2 years ago
### Usage
2 years ago
And it's output should be:
2 years ago
```console
2 years ago
$ go run .
2 years ago
$ go run . a | cat -e
$ go run . " 5ABc" | cat -e
T$
$ go run . "zA1" | cat -e
F$
$ go run . "01Talent" "student" | cat -e
$ go run . "Hello World" | cat -e
F$
$ go run . "a b c" | cat -e
F$
```