刷穿力扣(Hot100) liyusendesu | Q&A | 2024-9-11 22:15 | 530 | 0 16468 字 | 4.2 小时 1. 两数之和 哈希表 遍历数组,同时用 HashMap 维护已出现过的数及其下标 若当前的数 nums[i] 满足 target - nums[i] 曾经出现过,则直接返回 否则将其加入到哈希表中。 class Solution { public int[] twoSum(int[] nums, …