博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
leetCode刷题(找出数组里的两项相加等于定值)
阅读量:6256 次
发布时间:2019-06-22

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

最近被算法虐了一下,刷一下leetcode,找找存在感

如题:

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].
/** * @param {number[]} nums * @param {number} target * @return {number[]} */var twoSum = function(nums, target) {    var arr=[];    for(var i=0;i

  

转载于:https://www.cnblogs.com/windseek/p/8623250.html

你可能感兴趣的文章
事件(二)——Jquery事件模型
查看>>
U3D系列第二套教学视频上线--协程和异步加载
查看>>
PKUWC2018游记
查看>>
TCB建立连接
查看>>
使用private私有化
查看>>
position元素定位详述
查看>>
SGU 185.Two shortest (最小费用最大流)
查看>>
SGU 149. Computer Network
查看>>
Sql异常②
查看>>
常用git命令汇总
查看>>
Spring Boot嵌入式的Servlet容器
查看>>
【Java】 ArrayList和LinkedList实现(简单手写)以及分析它们的区别
查看>>
PYTHON 词云
查看>>
C++ 指针 部分
查看>>
springboot入门 —— 报错
查看>>
计算器作业(摘要算法)
查看>>
嵌入式 Linux 学习 之路
查看>>
关于微信获取access_token接口,返回值为-1000的问题
查看>>
tornado 10 长轮询和 websocket
查看>>
CSU - 1356 Catch (判奇环)
查看>>