keep learning, keep coding!
Problem - Two Sum
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 和一個目標整數 target,找出陣列中兩個數字的索引,使和等於 target。
Example 1:
1
2
3Input: nums = [2,7,11,15], target = 9
Output: [0,1]
Explanation: Because nums[0] + nums[1] == 9, we return [0, 1].Example 2:
1
2Input: nums = [3,2,4], target = 6
Output: [1,2]Example 3:
1
2Input: nums = [3,3], target = 6
Output: [0,1]
Solution - JavaScript
1 | /** |
Solution - Ruby
1 | def two_sum(nums, target) |
Solution - PHP
1 | function twoSum($nums, $target) { |