Created
February 14, 2015 19:42
-
-
Save ChanChar/35b4cf5aa4d888985f8c to your computer and use it in GitHub Desktop.
Codeabbey Skeleton
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
number_of_cases = int(input()) | |
for case in range(number_of_cases): | |
new_case = input() | |
# new_case is a new line of data. | |
# CODE HERE | |
# Want to usually print(ANSWER, end=' ') which prints out an answer | |
# but also a space at the end so it's nicely formatted for submission. | |
# ex. ANSWER1 ANSWER2 ... ANSWERN |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
but also HAS a space at the end ... *