Leetcode1. 两数之和
Leetcode刷题之路
1. 两数之和
采用方法:哈希法
class Solution {
public int[] twoSum(int[] nums, int target) {
HashMap<Integer,Integer> h = new HashMap<>();
for(int i=0;i<nums.length;i++){
if(h.containsKey(target-nums[i])){
原创
2021-12-30 09:35:46 ·
141 阅读 ·
0 评论