标签: python python-2.7
XAML
答案 0 :(得分:6)
你的所有分支都没有正确返回。
count=0 for t in range(len(x)-1): if x[t]>x[t+1]: count+=1 m,n=x[t+1],x[t] x[t+1],x[t]=n,m if count==0: return x else: return Sort(x)