How to create and initialize a 2d array of characters with different row lengths in Swift

1 Answer

0 votes
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 

*/

 



answered Feb 8, 2025 by avibootz
...