美文网首页Leetcode题解-PHP版
Leetcode PHP题解--D72 349. Interse

Leetcode PHP题解--D72 349. Interse

作者: skys215 | 来源:发表于2019-05-27 12:00 被阅读0次

    D72 349. Intersection of Two Arrays

    题目链接

    349. Intersection of Two Arrays

    题目分析

    返回给定两个数组的交集。

    思路

    这既然不是自己实现的话,直接用array_intersect就完事了。

    最终代码

    <?php
    class Solution {
    
        /**
         * @param Integer[] $nums1
         * @param Integer[] $nums2
         * @return Integer[]
         */
        function intersection($nums1, $nums2) {
            if(is_null($nums1)||is_null($nums2)){
                return [];
            }
            return array_unique(array_intersect($nums1, $nums2));
        }
    }
    

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

    相关文章

      网友评论

        本文标题:Leetcode PHP题解--D72 349. Interse

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