I have data as lists with length 3 to 25, using ascii (as integers). Example, x=[3,56,43,96,23]. Suppose I apply a sort so that y=sorted(x). What i
x=[3,56,43,96,23]
y=sorted(x)