#Leetcode 870. Advantage Shuffle || Medium || Code+ Explanation
Code with Alisha
0:00 / 0:00
#Leetcode 870. Advantage Shuffle || Medium || Code+ Explanation
1 654 просмотра · 5 лет назад
Code with Alisha
32,2 тыс. подписчиков
1 654 просмотра · 5 лет назад
Given two arrays A and B of equal size, the advantage of A with respect to B is the number of indices i for which A[i] is greater than B[i].
Return any permutation of A that maximizes its advantage with respect to B.
Example 1:
Input: A = [2,7,11,15], B = [1,10,4,11]
Output: [2,11,7,15]
Example 2:
Input: A = [12,24,8,32], B = [13,25,32,11]
Output: [24,32,8,12]
Link to challenge: https://leetcode.com/problems/advanta...
or https://leetcode.com/explore/challeng...