/*********************** * * WordDrv - driver for the word search * * Author: * Date: 2015- * ***********************/ import java.io.*; public class WordDrv { public static void main(String[] args) throws IOException { char[][] puzzle = WordSquare.create(1); String[] words = WordSquare.wordList(1); } //main }