CHAMP-123

Results 2 comments of CHAMP-123

yes,the solution is correct

l=[] for i in range(1000,3001): t=[int(j)%2 for j in list(str(i))] tp=list(set(t)) if tp.count(1)==0: l.append(str(i)) print(','.join(l)) how about this?