Created
February 25, 2013 22:21
-
-
Save apoz/5033879 to your computer and use it in GitHub Desktop.
Untitled 1
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 unittest | |
import random | |
#code length for generation | |
code_length=4 | |
colours=['R', 'A', 'M', 'V', 'N', 'I'] | |
def generate_security_code(length, dict): | |
sec_code = [] | |
for i in range(0,length): | |
sec_code.append(dict[random.randrange(0, len(dict))]) | |
return sec_code | |
def check_code(security, guess): | |
x=0 | |
ast=0 | |
nohitsec=[] | |
nohit=[] | |
for i in range(0, len(security)): | |
#print 'Checking ', guess[i], 'Vs ', security[i] | |
if (guess[i]==security[i]): | |
x+=1 | |
else: | |
nohitsec.append(security[i]) | |
nohit.append(guess[i]) | |
for i in range(0, len(nohit)): | |
if (nohitsec.count(nohit[i]) > 0 ): | |
ast+=1 | |
return 'X'*x + '*'*ast | |
def test(expected, security, code): | |
output = check_code(security, code) | |
assert expected == output | |
print output, "is the outut for ", code ,"over " , security | |
test("X*", ['R','A','N','I'], ['Y','N','Y','I']) | |
test("XX", ['R','A','N','I'], ['R','M','V','I']) | |
test("X**", ['N','R','R','I'], ['R','R','V','N']) | |
test("XX*", ['N','R','R','I'], ['R','R','R','N']) | |
if __name__ == '__main__': | |
#print str(generate_security_code(code_length, colours)) | |
unittest.main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment