CODING
_WEDNESDAYS
Lhedzv
hernandezmarquina
darkhelios
ramonramirezz
javiersalazar93
Luis Hernández
Jonathan Hernández
Tomas Ibarra
Ramón Ramirez
Javier Salazar
CodeEval Challenge number:
/104
Having a string representation of a set of numbers you need to print this numbers.
All numbers are separated by semicolon. There are up to 20 numbers in one line. The numbers are "zero" to "nine"
zero;two;five;seven;eight;four
three;seven;eight;nine;two
Your program should accept as its first argument a path to a filename. Each line in this file is one test case.
Input Sample:
Print numbers in the following way:
Output Sample:
025784
37892
CodeEval Challenge number:
/8
Write a program which reverses the words in an input sentence.
Hello World
Hello CodeEval
The first argument is a file that contains multiple sentences, one per line. Empty lines are also possible.
Input Sample:
Print to stdout each sentence with the reversed words in it, one per line. Ignore empty lines.
Output Sample:
World Hello
CodeEval Hello
Thanks For coming!
CODING_WEDNESDAYS!