leetcode2300专题

LeetCode2300咒语和药水的成功对数

题目描述    解析   先对药水排序后每个咒语去二分查找最低满足的药水的位置。 class Solution {public int[] successfulPairs(int[] spells, int[] potions, long success) {int n = spells.length, m = potions.length;Arrays.sort(potions);for