removeIndex seems to take a switched (wrong) order of the 2 arguments. And the tests seem to be wrong as well. It should be `removeIndex(index, list)` but it is `removeIndex(list, index)` making it bad for composition.
removeIndex seems to take a switched (wrong) order of the 2 arguments. And the tests seem to be wrong as well.
It should be
removeIndex(index, list)but it is
removeIndex(list, index)making it bad for composition.