hi.
wondering if anyone can offer me some advice..
i have an array of characters which is [2][3], with the word hello! in it. visually like so
i want to transpose this matrix and read it back into a string (HLEOL!), but i'm not sure how to approach this, my java is rusty and i've found many examples but they seem to deal with matrices of integers and get upset when i try and use chars.
greatful of any help you guys can offer.
wondering if anyone can offer me some advice..
i have an array of characters which is [2][3], with the word hello! in it. visually like so
Code:
H E L
L O !
i want to transpose this matrix and read it back into a string (HLEOL!), but i'm not sure how to approach this, my java is rusty and i've found many examples but they seem to deal with matrices of integers and get upset when i try and use chars.
greatful of any help you guys can offer.