I have 2 lists
lis1=[1,2,3,4,5,6,2,3,1]
lis2=[4,5,8,7,10,6,9,8]
I want to write a function that can return elements that are present in either lis1
or lis2
the output should be [1,2,3,7,8,9,10]
since 1,2,3 are not present in lis2 and 7,8,9,10 are not present in lis1