Compare arrays of two different shapes for example:
a:
([[1,2],
[3,4],
[5,6],
[7,8],
[9,10]])
b:
([[3,4],
[5,6]])
c = a -b
expected output:
c:
([[1,2],
[7,8],
[9,10]])
So far what I've tried usually results in: operands could not be broadcast together with shapes (21,2) (5,2)