Leetcode刷题记录[python]——349 Intersection of Two Arrays
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode刷题记录[python]——349 Intersection of Two Arrays相关的知识,希望对你有一定的参考价值。
一、前言
做了两题才慢慢摸清了leetcode的操作。
二、题349 Intersection of Two Arrays
Given two arrays, write a function to compute their intersection.
class Solution(object): def intersection(self, nums1, nums2): """ :type nums1: List[int] :type nums2: List[int] :rtype: List[int] """ nums3=[] nums4=[] i=0 j=0 for i in range(0, len(nums1)): if nums1[i] not in nums3: nums3.append(nums1[i]) for j in range(0,len(nums2)): if nums2[j] in nums3 and nums2[j] not in nums4: nums4.append(nums2[j]) return nums4
其实前两题不难,思路也还比较清晰。
以上是关于Leetcode刷题记录[python]——349 Intersection of Two Arrays的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode Java刷题笔记—349. 两个数组的交集
LeetCode Java刷题笔记—349. 两个数组的交集