Fix source verifer for fizz buzz 2

This commit is contained in:
David Hou 2017-03-15 09:32:08 -07:00 committed by GitHub
parent 13bea1f4cd
commit 970d61159d

View file

@ -1,5 +1,8 @@
code = raw_input()
if ("i" in code) or ("I" in code) or ("?" in code):
print "Your program contains an 'i', 'I', or '?'. Please remove it and try again."
else
import sys
code = sys.stdin.read()
if ("i" in code) or ("I" in code) or ("?" in code):
print "Your program contains an 'i', 'I', or '?'. Please remove it and try again."
else:
print "OK"