I need help trying to create this sort

I am unable to figure it out what's wrong with my In-place Radix LSD sort script

Radix In-Place sort

Could you quickly explain what this script is meant to do?

Sort an array of course.

Also, your project is unshared

Whoops! Doing it rn.

It looks cool, but what specifically is wrong with it?

This script is not sorting the array properly

(this is when the script is done)

I see, every 9th item isn't correct

What is the cause of this problem anyway?

Currently trying to figure that out
By the way, shift clicking the flag makes it go into turbo mode and speeds up the sorting

I had to slow it down for debugging

I did some tweaking, and I'm not entirely sure how, but I made it go in forwarded reverse

Script picture?

I got a similar result using 99 elements

My guess is that the problem is the DELETE (i) OF (data) block. You've just done an insertion, so all the items after the insertion point are one position later in the list than you think they are. So the deletion happens correctly or incorrectly depending on whether i<k.

But I'd feel a lot more confident about this if you used meaningful variable names. Reading this code gives me a headache.

Is the second input to the SPLIT in the third line supposed to be empty?