Created
June 10, 2012 09:07
-
-
Save yosida95/2904593 to your computer and use it in GitHub Desktop.
This file contains 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
#-*- coding: utf-8 -*- | |
import random | |
class Numeron(object): | |
length = 3 | |
answer = None | |
def start(self): | |
self.set_answer(self.gen_answer()) | |
while True: | |
challenge = self.get_challenge() | |
eat, bite = self.decision(challenge) | |
print '%d eat, %d bite' % (eat, bite) | |
if eat is self.length: | |
break | |
def end(self): | |
pass | |
def decision(self, challenge): | |
eat = bite = 0 | |
for i in range(0, self.length): | |
if challenge[i] is self.answer[i]: | |
eat += 1 | |
continue | |
if challenge[i] in self.answer: | |
bite += 1 | |
return eat, bite | |
def get_challenge(self): | |
challenge = raw_input().strip() | |
if not self.valid_challenge(challenge): | |
print 'This challenge was invalid' | |
challenge = self.get_challenge() | |
return challenge | |
def valid_challenge(self, challenge): | |
if not (challenge.isdigit() and len(challenge) is self.length): | |
return False | |
for i in range(0, self.length): | |
if challenge.count(challenge[i]) > 1: | |
return False | |
return True | |
def set_length(self, length): | |
assert isinstance(length, int) | |
self.length = length | |
def set_answer(self, answer): | |
assert isinstance(answer, str) | |
assert len(answer) is self.length | |
assert answer.isdigit() | |
self.answer = answer | |
def gen_answer(self): | |
answer = '' | |
while len(answer) < self.length: | |
candidate = str(random.randrange(0, 10)) | |
if not candidate in answer: | |
answer += candidate | |
return answer | |
if __name__ == '__main__': | |
numeron = Numeron() | |
numeron.start() | |
numeron.end() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment