I have a 2D array in Java that is
[[1 1 1 1 1] [2 2 2 2 2] [3 3 3 3 3] [4 4 4 4 4]]
And I was wondering how this would appear if drawn out on paper, i.e. what does each individual array translate to.
So would the above array appear as, A:
1 2 3 4
1 2 3 4
1 2 3 4
1 2 3 4
1 2 3 4
or, B:
1 1 1 1 1
2 2 2 2 2
3 3 3 3 3
4 4 4 4 4
I know this may seem a basic question but I can't find an answer and it is obviously fundamental to my programme.