Skip to content

Instantly share code, notes, and snippets.

@tef
Created July 13, 2014 02:01
Show Gist options
  • Save tef/14acc9278211279fb88f to your computer and use it in GitHub Desktop.
Save tef/14acc9278211279fb88f to your computer and use it in GitHub Desktop.
import sys
output = []
for line in sys.stdin.readlines():
line = line.split()
for n in range(len(line)):
output.append(" ".join(line[n:]+line[:n]))
for line in sorted(output):
print line
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment