https://www.codewars.com/kata/52c31f8e6605bcc646000082
Codewars - Achieve mastery through coding practice and developer mentorship
A coding practice website for all programming levels – Join a community of over 3 million developers and improve your coding skills in over 55 programming languages!
www.codewars.com
DESCRIPTION:
Write a function that takes an array of numbers (integers for the tests) and a target number. It should find two different items in the array that, when added together, give the target value. The indices of these items should then be returned in a tuple / list (depending on your language) like so: (index1, index2).
For the purposes of this kata, some tests may have multiple answers; any valid solutions will be accepted.
The input will always be valid (numbers will be an array of length 2 or greater, and all of the items will be numbers; target will always be the sum of two different items from that array).
Based on: http://oj.leetcode.com/problems/two-sum/
twoSum([1, 2, 3], 4) // returns [0, 2] or [2, 0]
코드
function twoSum(numbers, target) {
for(let i = 0; i < numbers.length; i++){
for(let j = i + 1; j < numbers.length; j++){
if(numbers[i] + numbers[j] === target) return [i, j];
}
}
}
'알고리즘 > Codewars' 카테고리의 다른 글
[백준] 26529: Bunnies / Node.js (JavaScript) (0) | 2023.04.25 |
---|---|
[Codewars] Get number from string (8 kyu) / JavaScript (0) | 2023.04.25 |
[Codewars] Mexican Wave (6 kyu) / JavaScript (0) | 2023.04.24 |
[Codewars] Weight for weight (5 kyu) / JavaScript (0) | 2023.04.23 |
[Codewars] Don't give me five! (7 kyu) / JavaScript (0) | 2023.04.22 |
댓글