纯情期待

文章
6
资源
0
加入时间
2年10月21天

【算法】两数之和等于target,返回索引

给定一个整数数组 nums 和一个整数目标值 target,请你在该数组中找出 和为目标值 target 的那 两个 整数,并返回它们的数组下标,假设每种输入只会对应一个答案。class Solution { /** * @param Integer[] $nums * @param Integer $target * @return Integer[] */ function twoSum($nums, $target) { .