Skip to content

Files

Latest commit

9987a3c · Mar 6, 2018

History

History

111-longest-word

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Mar 6, 2018
Mar 6, 2018
Mar 6, 2018
Mar 6, 2018

Longest Word

Challenge Description:

In this challenge you need to find the longest word in a sentence. If the sentence has more than one word of the same length you should pick the first one.

Input sample:

Your program should accept as its first argument a path to a filename. Input example is the following

some line with text
another line

Each line has one or more words. Each word is separated by space char.

Output sample:

Print the longest word in the following way.

some
another