Leetcode PHP题解--D137 27. Remove Element

D137 27. Remove Element

题目链接

27. Remove Element

题目分析

给定一个数组和一个数字,从该数组中移除该数字,并返回剩下的元素个数。

因为数组传的是引用型的,所以不用返回数组。

解题思路

这道题换作是C/C++的话,考察的是指针吧。

PHP的话,判断是否相等,然后直接unset就可以了。

最终代码

 $num){
            if($num == $val){
                unset($nums[$key]);
            }
            $remain++;
        }
        return $remain;
    }
}

若觉得本文章对你有用,欢迎用爱发电资助。

你可能感兴趣的:(Leetcode PHP题解--D137 27. Remove Element)