How to convert a matrix of numbers to a string without row separation (flattening the matrix) in Swift

1 Answer

0 votes
import Foundation

let matrix = [
    [ 4,  7,  9, 18, 29, 1],
    [ 1,  9, 18, 99,  4, 7],
    [ 9, 17, 89,  2,  7, 9],
    [19, 49,  6,  1,  9, 0],
    [29,  4,  7,  9, 18, 6]]
    
let matrixString = matrix.flatMap{ $0 }.map(String.init).joined(separator: ", ")

print(matrixString)



/*
run:

4, 7, 9, 18, 29, 1, 1, 9, 18, 99, 4, 7, 9, 17, 89, 2, 7, 9, 19, 49, 6, 1, 9, 0, 29, 4, 7, 9, 18, 6

*/

 



answered May 24, 2025 by avibootz
edited May 24, 2025 by avibootz
...