Ask your own question, for FREE!
MIT 6.00 Intro Computer Science (OCW) 19 Online
OpenStudy (anonymous):

need help with my function for p4 in pset 4: for shift in range(28): startpoint = start switch = False newtext= apply_shift(text[start: ], -shift) words = newtext.split() for word in words: if is_word(wordlist, word) == True: startpoint = startpoint + len(word) switch = True if switch == True: if startpoint == len(text): return [(start, shift)] else: return [(start, shift)] + find_best_shifts(wordlist, text[0:start]+newtext, startpoint+1)

OpenStudy (andrew.m.higgs):

An explanation of what is expected could be useful.

OpenStudy (anonymous):

I figured out! Thank you

OpenStudy (andrew.m.higgs):

:-)

OpenStudy (anonymous):

Is the hangman problem I think, if is the problem for the computer to find the best hand, you'll have to test each word, but before check the hand, so your range wouldn't be the 80K words.

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!