/** * * @author Jayson Falkner - jfalkner@umich.edu */ public class Main { // the string of jumbled letters String letters = "folo"; // String letters = "Al Kaline"; // an array counting characters int[] counts = getCounts(letters); /** * @param args the command line arguments */ public static void main(String[] args) throws Exception { // make a new instance of the class Main m = new Main(); // the dictionary of words Dictionary d = new Dictionary(); String[] words = d.getWords(); for (int i=0;i