3637383940414243444546
*/ public class Scrambler { public Scrambler(String word) throws ScramblerException { if (word == null || word.length() < 3) { throw new ScramblerException(); } _word = word; _words = new TreeSet(new WordComparator()); }