Skip to content

Instantly share code, notes, and snippets.

@ChanChar
Created February 14, 2015 19:42
Show Gist options
  • Save ChanChar/35b4cf5aa4d888985f8c to your computer and use it in GitHub Desktop.
Save ChanChar/35b4cf5aa4d888985f8c to your computer and use it in GitHub Desktop.
Codeabbey Skeleton
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
@ChanChar
Copy link
Author

but also HAS a space at the end ... *

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment