Try these array formulas** :
Items in A that are not in B:
Array entered in D1:
=IF(ROWS(D$1

1)<=SUM(--ISNA(MATCH(A$1:A$10,B$1:B$10,0))),INDEX(A$1:A$10,SMALL(IF(ISNA(MATCH(A$1:A$10,B$1:B$10,0)),ROW(A$1:A$10)),ROWS(D$1

1))-MIN(ROW(A$1:A$10))+1),"")
Copy down until you get blanks
Items in B that are not in A:
Array entered** in E1:
=IF(ROWS(E$1:E1)<=SUM(--ISNA(MATCH(B$1:B$10,A$1:A$10,0))),INDEX(B$1:B$10,SMALL(IF(ISNA(MATCH(B$1:B$10,A$1:A$10,0)),ROW(B$1:B$10)),ROWS(E$1:E1))-MIN(ROW(B$1:B$10))+1),"")
Copy down until you get blanks
** array formulas need to be entered using the key combination of
CTRL,SHIFT,ENTER (not just ENTER). Hold down both the CTRL key and the SHIFT
key then hit ENTER.