Create a new Set and add elements from both the Lists l1 and l2. The final set will be the one that contains no duplicates. But make sure you have implemented the equals() and hashCode() correctly.
Below is my sample (not perfect) for doing the same. Posting it here it to validate my logic ;-) or to see if there are better ways of optimizing this
Lit unique=...
if(l1.size==l2.size())
{
//o(n)
copyToUnique(l1, l2, unique)
}
else if(l1.size>l2.size())
{
//o(n) + num of extra elements
copyToUnique(l1, l2, unique)
unique.addAll(l1.subList(l2.size(),l1.size());
}
else if(l1.size<l2.size())
{
//o(n) + num of extra elements
copyToUnique(l2, l1, unique)
unique.addAll(l2.subList(l1.size(),l2.size());
}
public void copyToUnique(List l1, List l2, List unique)
{
for(Object element:l1)
{
if(!l2.contains(element))
{
unique.add(element);
}
}
unique.addAll(l2);
}