list s = [2,4];
list t = [1,2,3,4,5];
for(int i=0;i<=t.length;i++){
if(s.contains(t[i])) continue;
diğer kodlar
}