pub fn vec_difference<T: PartialEq + Clone>(a: &[T], b: &[T]) -> Vec<T>
Return elements in a not in b (order-preserving, O(n*m)).
a
b
O(n*m)