MCPcopy
hub / github.com/careercup/ctci / Question

Method Question

java/Chapter 18/Question18_13/Question.java:14–19  ·  view source on GitHub ↗
(String[] list)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

createWordGroupsMethod · 0.95

Tested by

no test coverage detected