美文网首页
两数之和

两数之和

作者: Newzer | 来源:发表于2022-07-14 13:11 被阅读0次
    <?php
    $num = [3,2,4];
    $target = 6;
    print_r(twoSum($num, $target));
    
    function twoSum($num, $target) {
        $count = count($num);
    
        $map = array();
        for ($i = 0; $i < $count; $i ++) {
            $other = $target - $num[$i];
            if (isset($map[$other])){
                return [$map[$other],$i];
            }else {
                $map[$num[$i]] = $i;
            }
        }
        return [];
    }
    

    相关文章

      网友评论

          本文标题:两数之和

          本文链接:https://www.haomeiwen.com/subject/ionxirtx.html