Skip to content

Latest commit

 

History

History
25 lines (14 loc) · 539 Bytes

README.md

File metadata and controls

25 lines (14 loc) · 539 Bytes

ReverseWords

CodeEval Challenge: Reverse words

Challenge Description:

Write a program to reverse the words of an input sentence.

Input sample:

The first argument will be a text file containing multiple sentences, one per line. Possibly empty lines too. e.g.

Hello World

Hello CodeEval

Output sample:

Print to stdout, each line with its words reversed, one per line. Empty lines in the input should be ignored. Ensure that there are no trailing empty spaces on each line you print. e.g.

World Hello

CodeEval Hello