I tried many different ways, but TI always gives me errors:
Invalid in a function or current experession
I tried
{0, 0, 0, 0}->A
and
[0, 0, 0, 0]->A
Both ways did not work. Any idea?
I tried many different ways, but TI always gives me errors:
Invalid in a function or current experession
I tried
{0, 0, 0, 0}->A
and
[0, 0, 0, 0]->A
Both ways did not work. Any idea?
I finally got it solved:
We have to explicitly declare
lst
as local variable, and create a new list ofn
element withnewList()
function.