Added fizz-buzz-2's source grader

This commit is contained in:
Brandon John 2017-03-08 15:24:44 -06:00
parent bf5542e438
commit 5d2e620fc1

View file

@ -0,0 +1,5 @@
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
print "OK"