Subtracting 2 arrays

i have array [ [1,1], [1,2] ] and [ [ 0,2 ] ] is it possible to subtract array 1 to array 2? that way the results will return [ [ 1, -1], [1, 0] ]

You could do it like this:

There is probably a more concise way using the complex list blocks

For a more general approach