| 11 | |
| 12 | public class BoggleSolver { |
| 13 | private static class Node { |
| 14 | private boolean isTernimal = false; |
| 15 | private Node[] children = new Node[26]; |
| 16 | } |
| 17 | |
| 18 | private final Node root; // should not be modified |
| 19 | private final int[][] dirs = { |
nothing calls this directly
no outgoing calls
no test coverage detected