Problem Statement | |||||||||||||
Each element of text is a line of prose from some passage. You will return a String[] that is read downward as opposed to left-to-right. That is, the first element of text will correspond to the first "column" of the returned String[], and so forth. | |||||||||||||
Definition | |||||||||||||
| |||||||||||||
Constraints | |||||||||||||
- | text will contain between 1 and 50 elements, inclusive. | ||||||||||||
- | Each element of text will contain between 1 and 50 characters, inclusive. | ||||||||||||
- | Each element of text will contain the same number of characters. | ||||||||||||
- | Each character in text will be an uppercase letter ('A'-'Z'). | ||||||||||||
Examples | |||||||||||||
0) | |||||||||||||
| |||||||||||||
1) | |||||||||||||
| |||||||||||||
2) | |||||||||||||
|