File tree Expand file tree Collapse file tree 1 file changed +20
-20
lines changed
Expand file tree Collapse file tree 1 file changed +20
-20
lines changed Original file line number Diff line number Diff line change @@ -11,26 +11,6 @@ __all__ = (
1111 "Language" ,
1212)
1313
14-
15- def read_words_with_length (language : Language , word_length : int , / ) -> Collection [str ]:
16- pass
17-
18- def solve (
19- pattern_string : str ,
20- invalid_letters : Sequence [str ],
21- language : Language ,
22- max_words_to_collect : int
23- ) -> HangmanResult :
24- pass
25-
26- def solve_crossword (
27- pattern_string : str ,
28- invalid_letters : Sequence [str ],
29- language : Language ,
30- max_words_to_collect : int
31- ) -> HangmanResult :
32- pass
33-
3414class HangmanResult :
3515 @property
3616 def input (self , / ) -> str : ...
@@ -75,3 +55,23 @@ class Language:
7555
7656class UnknownLanguageError (ValueError ):
7757 pass
58+
59+
60+ def read_words_with_length (language : Language , word_length : int , / ) -> Collection [str ]:
61+ pass
62+
63+ def solve (
64+ pattern_string : str ,
65+ invalid_letters : Sequence [str ],
66+ language : Language ,
67+ max_words_to_collect : int
68+ ) -> HangmanResult :
69+ pass
70+
71+ def solve_crossword (
72+ pattern_string : str ,
73+ invalid_letters : Sequence [str ],
74+ language : Language ,
75+ max_words_to_collect : int
76+ ) -> HangmanResult :
77+ pass
You can’t perform that action at this time.
0 commit comments