I have 2 lists with same Object type.
List A [ foo, bar, moo, woo, pee ]
List B [ bar, woo ]
I want to compare those 2 lists and if the name matches, set its property to true.
For instance,
if(ListA[1].name.equals(ListB[0].name)) { //match name 'bar' and 'bar'
ListA[1].hasSameName = true;
}
something like that.
I can write O(N^2) solution.
for(Talent checkedTalent : ListA) {
for(Talent filteredTalent : ListB) {
if( checkedTalent.Id.equals(filteredTalent.Id) ) {
filteredTalent.isSelected = true;
}
}
}
Can this be done in more efficient way?
