摘要: def query_list_same(a): n=len(a)#列表的长度 j=0 #固定值 while j<n: i = 1 # 索引 r = 0 # 计数器 while i<n: if a[j]==a[i]: r+=1 i+=1 else: i+=1 if r>n/2: print(a[j]) 阅读全文
posted @ 2025-08-06 13:15 hml-future 阅读(6) 评论(0) 推荐(0)
摘要: def list_same_num(list1, list2): i = 0 # 访问list1 j = 0 # 访问list2 while i < len(list1) and j < len(list2): #使用and 不是& if list1[i] < list2[j]: i += 1 el 阅读全文
posted @ 2025-08-06 13:13 hml-future 阅读(7) 评论(0) 推荐(0)