FindWords is a function to output all the possible English words from a specific dictionary that could be composed of input characters.
Language: Python Packages: urllib Environment:Windows, Linux Files: FindWords.py, runme.sh, TestCase.txt
- Parameters:
- url(String): the array of integers--dictionary url
- chars(String): input characters
- Output:
- output(List): all possible words
- Parameters:
- url(String): the array of integers--dictionary url
- Output:
- wordList(List): word dictionary
- Parameters:
- word(String): word
- Output:
- lowerWord(String): word in lower case
- Parameters:
- chars(String): input characters
- Output: None
- Parameters:
- wordList(List): word dictionary
- Output: None
To store the frequency of each character in the input characters.
To store all the possible English words.
./runme.sh