(String[] args)
| 36 | } |
| 37 | |
| 38 | public static void main(String[] args) { |
| 39 | String[] arr = createGiantArray(); |
| 40 | printLongestWord(arr); |
| 41 | } |
| 42 | |
| 43 | public static String[] createGiantArray() { |
| 44 | String arr[] = {"a", |
nothing calls this directly
no test coverage detected