博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
1. Two Sum
阅读量:5305 次
发布时间:2019-06-14

本文共 1035 字,大约阅读时间需要 3 分钟。

一. 链接和题目简单介绍

      链接:

Given an array of integers, return indices of the two numbers such that they add up to a specific target.

You may assume that each input would have exactly one solution, and you may not use the same element twice.

Example:

Given nums = [2, 7, 11, 15], target = 9,Because nums[0] + nums[1] = 2 + 7 = 9,return [0, 1].

二. 分析

  用哈希map 应该会快点

 

三. 代码

 Java:

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

 

  JS:

const twoSum = function(nums, target) {    const comp = {};    for(let i=0; i
=0){ return [ comp[nums[i] ] , i] } comp[target-nums[i]] = i }};

转载于:https://www.cnblogs.com/jxl00125/p/11173249.html

你可能感兴趣的文章
zabbix监控日志文件
查看>>
正则表达式
查看>>
pip install torch on windows, and the 'from torch._C import * ImportError: DLL load failed:' s...
查看>>
环套树
查看>>
java基础(一):我对java的三个环境变量的简单理解和配置
查看>>
arcgis api 4.x for js 结合 Echarts4 实现散点图效果(附源码下载)
查看>>
YTU 2625: B 构造函数和析构函数
查看>>
apache自带压力测试工具ab的使用及解析
查看>>
C#使用Xamarin开发可移植移动应用(2.Xamarin.Forms布局,本篇很长,注意)附源码
查看>>
jenkins搭建
查看>>
C#中使用Split分隔字符串的技巧
查看>>
eclipse的调试方法的简单介绍
查看>>
加固linux
查看>>
IPSP问题
查看>>
(转)Java中的String为什么是不可变的? -- String源码分析
查看>>
HNU 10362 A+B for Input-Output Practice (II)
查看>>
10.17动手动脑
查看>>
WPF中Image显示本地图片
查看>>
Windows Phone 7你不知道的8件事
查看>>
脚本删除文件下的文件
查看>>