Generally, my bubble sort works. Why I am doing all this is:
a) if I want to sort a list of "words", e.g. "hh, ab, Bc, bc", it will give me the following output: Bc, ab, bc, hh (due to ascii...)
b) if I want to sort a list of number that was importet as string, e. g. "12, 4, 88,2", it will give me the following output: 12, 2, 4, 88 (i think due to ascii, too...)
I was hoping, if I converted all my strings to ascii I could solve this problem.
Maybe someone has a better idea to solve this?