- Enter in any string with alphanumeric characters
- Generate words that have a relationship to the entered string (there are three possible relationships)
- Words with a relationship are structured in an array
- Filter (manipulate) array by removing components that have or don't have a specific combination of characters (user-chosen)
- Sort resulting array by length of word or word value in popular tile-based multiplayer crossword games
- View results and / or search through results with user-defind parameters
- Enter in any string with alphanumeric characters
- Generate words that have a relationship to the entered string (there are three possible relationships programmed for)
- User guesses as many possible relationships as possible
- User-generated results compared witht the actual total number of relationships. Show all relationships missed by the user
- Inside /assets, unzip the lobby.7z.001, etc. and uncomment
Interact.playSound("lobby")inControl.javaif you want to hear the lobby sound - Slideshow presentation files are at root of directory
$ git clone https://www.github.com/eankeen/word-finder
$ cd ./word-finder
$ ./run.sh$ git clone https://www.github.com/eankeen/word-finder
$ cd ./word-finder/src
$ javac *.java
$ cd ..
$ java src.Control./run.sh -remremoves all .class files from src directory if at least one is present./run.sh -comcompiles all .class files in the src directory, if all .class files are present. If not, will alert user that not all .class files are present./run.sh -runruns the program./run.shperforms all of the above operations, in order