Describe how you would find the elements that are in array A but not in array B.
Anonymous
Convert both arrays to sets. Use the set difference operation The set(A) - set(B) finds all elements in that are not in .
Check out your Company Bowl for anonymous work chats.