I'm learning the ropes of Scala, and am wondering if there is an easy way to do array subtraction.
Let's say I have two arrays where elements are of the form (K,V):
A: Array((1,2), (2,3), (4,1))
B: Array((1,1), (2,3))
I would like to get
A - B: Array((1,1), (4,1))
The corresponding keys should subtract.
Any help is appreciated. Thanks in advance!
Edit: Seems like the word "subtract" is confusing. What I wish to do is to subtract values of matching keys in (K, V) pairs in the arrays.