given two equal-sized arrays An and B, the advantage of An over B can be described by the number of indexes that satisfy A [I] > B [I].
returns an arbitrary arrangement of A to maximize its advantage over B.
example 1:
input: a = [2 br 7, 7, 11, 15], B = [1, 10, 4, 11, 11]
output: [2, 11, 7, 15, 15]
example 2:
input: a = [12 record24, 8, 32], B = [13, 25, 32, 11]
output: [24, 32, 12]