I have a problem that I think must be solved with recursion since I can't solve it with for loops
I have a array a = [a1,..., an], each element of the matrix can have the values of the matrix b = [m,...,p].
Example:
a = [a1, a2, a3] 3 dimensions
b = [0, 1, 2]
I have a array a = [a1,..., an], each element of the matrix can have the values of the matrix b = [m,...,p].
Example:
a = [a1, a2, a3] 3 dimensions
b = [0, 1, 2]
B4X:
000
100
200
010
110
210
020
120
220
001
101
201
011
111
211
021
121
221
002
102
202
012
112
212
022
122
222
Last edited: