Hi All,
i have two vector objects, i just want to find difference of elements present in both. like, say for eg. vector v1 = {'a','b','c','d'};
and vector v2 = {'a','t','c'}
the output im expecting is v1 - v2 which is {'b','d'}
is this possible ? kindly help me
