recurrence for isort
isort([]) => [];

isort([A | X]) => insert(A, isort(X));


argument below is the length of the list

Tisort(0) => 0;

Tisort(N) => Tisort(N-1) + Tinsert(N-1) ;