美文网首页
1. 两数之和

1. 两数之和

作者: 东_11f3 | 来源:发表于2019-08-22 16:37 被阅读0次

    java

    ···

    class Solution {
    public int[] twoSum(int[] nums, int target) {
    Map<Integer, Integer> map = new HashMap<>();
    for (int i = 0; i < nums.length; i++) {
    int complement = target - nums[i];
    if (map.containsKey(complement)) {
    return new int[] { map.get(complement), i };
    }
    map.put(nums[i], i);
    }
    throw new IllegalArgumentException("No two sum solution");

    }
    

    }

    ···

    python

    
    

    GO

    
    
    

    相关文章

      网友评论

          本文标题:1. 两数之和

          本文链接:https://www.haomeiwen.com/subject/inwgsctx.html