Skip to content

Instantly share code, notes, and snippets.

@neizod
Forked from Python1Liners/LICENSE.txt
Created February 20, 2012 20:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save neizod/1871076 to your computer and use it in GitHub Desktop.
Save neizod/1871076 to your computer and use it in GitHub Desktop.
Reverse Words
rev_words = '\n'.join('Case #{}: {}'.format(test+1, ' '.join(word for word in input().split()[::-1])) for test in range(int(input())))

Reverse Words

According to this Code Jam problem, I try to made it in one line.

rev_words = '\n'.join(
'Case #{}: {}'.format(
test+1,
' '.join(word for word in input().split()[::-1])) # reverse list
for test in range(int(input())))
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2012 Nattawut Phetmak <http://about.me/neizod>
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. You just DO WHAT THE FUCK YOU WANT TO.
{
"name": "reverse_words",
"description": "reverse words in position.",
"keywords": [
"string",
"reverse",
"codejam"
]
}
rev_words = '\n'.join('Case #{}: {}'.format(test+1, ' '.join(word for word in input().split()[::-1])) for test in range(int(input())))
# stdin:
# 3
# this is a test
# foobar
# all your base
expected = '''Case #1: test a is this
Case #2: foobar
Case #3: base your all'''
print(expected)
print(rev_words)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment