奇数单增序列(python超简单方法)
摘要:解题思路:灵活使用列表推导式和sorted函数,python来写这道题不要太简单!四行代码直接解决参考代码:N = int(input())nums = sorted(map(int, input()……
8行:万花丛中过,片叶不沾身
摘要:````
li=[]
n=int(input())
l=list(map(int,input().split()))
for s in l:
if s%2==1:
……