Created
October 11, 2015 18:14
-
-
Save jdiez17/f3484ca54137b36ef903 to your computer and use it in GitHub Desktop.
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
import sys | |
length = int(sys.stdin.readline()) | |
elements = map(int, sys.stdin.readline().split("\n")[0].split(" ")) | |
x = int(sys.stdin.readline()) | |
if length != len(elements): | |
print("FAIL") | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment