You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
380 B
7 lines
380 B
import timeit
|
|
from hangman import load_words,filter_wordlist,ALPHABET
|
|
words = load_words('words.txt')
|
|
def test():
|
|
times_mp = timeit.timeit("filter_wordlist('.....',ALPHABET,words,True)",number = 20,globals=globals())
|
|
times_sc = timeit.timeit("filter_wordlist('.....',ALPHABET,words,False)",number = 20,globals=globals())
|
|
return dict(time_mp=times_mp,times_sc=times_sc)
|