首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
leetcode2300专题
LeetCode2300咒语和药水的成功对数
题目描述 解析 先对药水排序后每个咒语去二分查找最低满足的药水的位置。 class Solution {public int[] successfulPairs(int[] spells, int[] potions, long success) {int n = spells.length, m = potions.length;Arrays.sort(potions);for
阅读更多...