Hi!
I have 2 2D arrays and i need to shuffle them in 1.
I was using random pushing for 1D arrays, but it seems to be not working for 2D.
My arrays looks like that:
---
1;2;0
2;2;0
3;1;0
4;1;0
---
and
---
5;0;1
6;0;1
7;0;1
---
I need to push all from 1st array, then push 1 rand form 2nd array and then shuffle them.
So the final array should looks like that:
---
2;2;0
6;0;1
4;1;0
1;2;0
3;1;0
---