Created
April 13, 2014 18:43
-
-
Save AdamJB/10596625 to your computer and use it in GitHub Desktop.
Python Algo solving Template
This file contains 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
#!/usr/bin/env python | |
""" | |
Problem : | |
Code by : AdamJB | |
""" | |
import numpy as np | |
def solveCase(caseData): | |
print caseData | |
def main(): | |
T = int(raw_input()) | |
for case in xrange(T): | |
solveCase(case) | |
main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment