예제 #1
0
def checkScramble(word):
    scrambles = scramble.scramble(word)
    # (s1,s2)
    for tat in scrambles:
        if checkwords.is_words(tat):
            print "%s -> %s" % (word,tat) 
예제 #2
0
 def testboomboom(self):
     self.assertEquals(checkwords.is_words("boomboom"),True)