标签:res bubuko info 技术 .com col 方法 enum for
刚刚在扣扣群里看到有人发的一道题,自己写了一下,不清楚有没有更好的方法
list=[5,5,8,9,7,6,5,7,5,8,1,8,4,7] #5,8,7,9,6,1,4 result=[] def socet(arge): count=1 for index,item in enumerate(arge): item_next=arge[index+1] if arge.count(item)>=arge.count(item_next): if item in result: pass else: result.append(item) count+=1 if len(arge)==count: for i in arge: if i in result: pass else: result.append(i) return result print(socet(list))
标签:res bubuko info 技术 .com col 方法 enum for
原文地址:https://www.cnblogs.com/q1ang/p/9030012.html