(int i)
| 32 | } |
| 33 | |
| 34 | public String getColumn(int i) { |
| 35 | char[] column = new char[height]; |
| 36 | for (int j = 0; j < height; j++) { |
| 37 | column[j] = getLetter(j, i); |
| 38 | } |
| 39 | return new String(column); |
| 40 | } |
| 41 | |
| 42 | public boolean isComplete(int l, int h, WordGroup groupList) { |
| 43 | // Check if we have formed a complete rectangle. |
no test coverage detected