Created
June 24, 2016 18:09
-
-
Save rrees/c6955e3894bb91c7d0008ed2f502e192 to your computer and use it in GitHub Desktop.
Hackerrank Python 3 stub
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
#!/bin/python3 | |
import sys | |
# Import n lines from a file | |
t = int(input().strip()) | |
for a0 in range(t): | |
n = int(input().strip()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment