Skip to content

Instantly share code, notes, and snippets.

@jdiez17
Created October 11, 2015 18:14
Show Gist options
  • Save jdiez17/f3484ca54137b36ef903 to your computer and use it in GitHub Desktop.
Save jdiez17/f3484ca54137b36ef903 to your computer and use it in GitHub Desktop.
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