Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
92920 赵乘浩 初级冒泡排序 Python3 Compile Error 0 MS 0 KB 193 2024-10-07 09:05:12

Tests(0/0):


Code:

n = int(input()) a = list(map(int,input().split() )) for i in range(n-i): for j in range(n-i-1): if a[j]<a[j+1]: a[j],a[j+1] = a[j+1],a[j] for i in range(n): print(*a)


Run Info:

Sorry: TabError: inconsistent use of tabs and spaces in indentation (Main.py, line 6)