[アルゴリズム]Two Sum
2984 ワード
問題の説明
Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target.
You may assume that each input would have exactly one solution, and you may not use the same element twice.
You can return the answer in any order.
数値配列numsを構成する数値には、2つの数値を加えてtargetに対応する数値値を生成し、numsのインデックスを返す必要があります.
I/O例
🖊 に答える
💡 コード#コード#
var twoSum = function(nums, target) {
for (let i = 0; i < nums.length - 1; i++) {
for (let j = i + 1; j < nums.length; j++) {
if (nums[i] + nums[j] === target)
return [i, j];
}
}
}
質問元:LeetCodeReference
この問題について([アルゴリズム]Two Sum), 我々は、より多くの情報をここで見つけました https://velog.io/@niboo/LeetCode-Two-Sumテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol