I have an array that keep changing with the user input.
for example:
user = ['a','b',['c','d'],'e',['f','g',['h','i'],'j']]
I also have a pointer to point where to make a change.
pointer = [1] change value at user[1]
pointer = [2,1] change value at user[2][1]
pointer = [4,2,2] change value at user[4][2][2]
Dimension is mostly not the same and can be more than 10. Now I'm making a string then eval. Can I write a function without using eval?