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.
 
 
 
 
xpetit 32eddefd09
Remove template variable [[ROOT]] from subjects and fix subjects
3 years ago
..
README.md Remove template variable [[ROOT]] from subjects and fix subjects 3 years ago

README.md

revwstr

Instructions

Write a program that takes a string as a parameter, and prints its words in reverse.

  • A word is a sequence of alphanumerical characters.

  • If the number of arguments is different from 1, the program will display nothing.

  • In the parameters that are going to be tested, there will not be any extra spaces. (meaning that there will not be additional spaces at the beginning or at the end of the string and that words will always be separated by exactly one space).

Usage

student@ubuntu:~/revwstr/test$ go build
student@ubuntu:~/revwstr/test$ ./test "the time of contempt precedes that of indifference"
indifference of that precedes contempt of time the
student@ubuntu:~/revwstr/test$ ./test "abcdefghijklm"
abcdefghijklm
student@ubuntu:~/revwstr/test$ ./test "he stared at the mountain"
mountain the at stared he
student@ubuntu:~/revwstr/test$ ./test "" | cat-e
$
student@ubuntu:~/revwstr/test$