(String[] list)
| 12 | private Trie trieList[]; |
| 13 | |
| 14 | public Question(String[] list) { |
| 15 | groupList = WordGroup.createWordGroups(list); |
| 16 | maxWordLength = groupList.length; |
| 17 | // Initialize trieList to store trie of groupList[i] at ith position. |
| 18 | trieList = new Trie[maxWordLength]; |
| 19 | } |
| 20 | |
| 21 | /* This function finds a rectangle of letters of the largest |
| 22 | * possible area (length x breadth) such that every row forms a |
nothing calls this directly
no test coverage detected