Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
108771 伍长辉 寻找第二小的数 Python3 Compile Error 0 MS 0 KB 191 2025-01-21 19:57:36

Tests(0/0):


Code:

n=int(input()) for x in range(n): m=int(input()) a=input.split() a=[int(x) for x in a] b=min(a) a.remove(b) if len(a)==0: print('No') else: c=min(a) print(c)


Run Info:

Sorry: IndentationError: unexpected indent (Main.py, line 7)