문제

I'm not sure if this is possible due to the numerical indices, but hopefully someone can point me in the right direction.

Given the table of:

t = { 13, 200, 12, 15, 23 }

how can I nest a table using the numbers?

t["200"] = {"stuff", "more stuff", "even more stuff"}

doesn't seem to work, as it'll create a position 200 and fill in the empty cells with null. I'd add a letter as a suffix/prefix, but the problem comes trying to sort the table numerically. Is this even possible, or am I stuck with a different method? Thanks!

Slight edit due to a realisation:

t["200"] = {"stuff", "more stuff", "even more stuff"}

actually creates a key of "200", whereas:

t[200] = {"stuff", "more stuff", "even more stuff"}

creates the index 200 with everything else null.

올바른 솔루션이 없습니다

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top