import Foundation
// Initialize a 2D array with different row lengths
let charArray2D: [[Character]] = [
["A", "B", "C"],
["S"],
["D", "E"],
["F", "G", "H", "I", "J", "K"]
]
// Print the 2D array
for row in charArray2D {
for char in row {
print(char, terminator: " ")
}
print()
}
/*
run:
A B C
S
D E
F G H I J K
*/