Julia: Flattening array of `String`s
This is essentially the same question as
Julia: Flattening array of array/tuples
but for array of String
s. The Iterators.flatten(xs)
solution shown in the above thread is excellent for numbers. But, with Strings
, Iterators.flatten()
flattens a String
into characters!
Julia: Fattening array of `String`s
This is essentially the same question as
Julia: Flattening array of array/tuples
but for array of String
s. The Iterators.flatten(xs)
solution shown in the above thread is excellent for numbers. But, with Strings
, Iterators.flatten()
flattens a String
into characters!