e.g we have two 2d Vectors:
Vector(Vector(A, A, A), Vector(A, A, A))
Vector(Vector(A, B, B), Vector(A, B, A))
The following result should be:
Vector(2, 1)
Because at index 0 both Vectors differ by 2 elements and at index 1 both differ by 1 elements.
Got the answer with:
result is: