文章目录
☀️ 前言 ☀️
算法作为极其重要的一点,是大学生毕业找工作的核心竞争力,所以为了不落后与人,开始刷力扣算法题!
🙀 作者简介 🙀
大家好,我是布小禅,一个尽力让无情的代码变得生动有趣的IT小白,很高兴能偶认识你,关注我,每天坚持学点东西,我们以后就是大佬啦!
📢 博客主页:❤布小禅❤
📢 作者专栏:
这是我刷第 46/100 道力扣简单题
💗 一、题目描述 💗
给定两个数组,编写一个函数来计算它们的交集。
示例1:
输入:nums1 = [1,2,2,1], nums2 = [2,2] 输出:[2]
示例2:
输入:nums1 = [4,9,5], nums2 = [9,4,9,8,4] 输出:[9,4]
提示:输出结果中的每个元素一定是唯一的。
我们可以不考虑输出结果的顺序。
💁 二、题目解析 💁
思路1
创建两个动态数组
一个nums3存储nums2,一个nums4存储答案
遍历nums1,如果在nums3中,且nums4中没有这个元素,就添加到nums4中
🏃 三、代码 🏃
☁️ 1️⃣. python ☁️
class Solution: def intersection(self, nums1: List[int], nums2: List[int]) -> List[int]: li = [] for i in nums1: if i in nums2: if i not in li: li.append(i) return li
❄️ 2️⃣. C# ❄️
public class Solution { public int[] Intersection(int[] nums1, int[] nums2) { List<int> nums3 = new List<int>(nums2); // 创建两个动态数组 List<int> nums4 = new List<int>(); // 创建两个动态数组 foreach (int i in nums1){ // 遍历数组 if (nums3.Contains(i)) { // 如果在nums3 if (!nums4.Contains(i)) nums4.Add(i); // 如果在nums4 } } return nums4.ToArray(); } }
🌔 结语 🌔
坚持最重要,每日一题必不可少!😸
期待你的关注和督促!😛