Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
List Overlap
#1
I'm doing online problems to get me back into python after not touching it for a couple of years.

Problem comes from http://www.practicepython.org/exercise/2...erlap.html

Take two lists, say for example these two:

a = [1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89]
b = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13]
and write a program that returns a list that contains only the elements that are common between the lists (without duplicates). Make sure your program works on two lists of different sizes.

Extras:

Randomly generate two lists to test this
Write this in one line of Python (don’t worry if you can’t figure this out at this point - we’ll get to it soon)

This is my attempt but it doesn't work:

def exc5():
    a = random.sample(range(20), 10)
    b = random.sample(range(20), 10)
    c = [i for i in a if a in b]
    print(a)
    print(b)
    print(c)


exc5()
Sample output:

Output:
[9, 17, 6, 4, 12, 16, 18, 5, 1, 7] [4, 5, 19, 12, 9, 18, 14, 2, 8, 11] []
As you can see the numbers which are in both lists should be in the third list but it's an empty list.

I am aware you can do this with sets but I'm interested as to why this doesn't work.

Huh
Reply
#2
You want "if i in b" not "if a in b". Also the in operator in this case will not be efficient for large inputs. Happy to talk about that if you want but waiting so as to not hijack your thread.
Reply
#3
“without duplicates” requirement directs my thoughts toward sets. Sonething like: convert lists to sets, do set operation, convert result to list.

Edit: need to read more carefully, you already considered sets. My mistake.
I'm not 'in'-sane. Indeed, I am so far 'out' of sane that you appear a tiny blip on the distant coast of sanity. Bucky Katt, Get Fuzzy

Da Bishop: There's a dead bishop on the landing. I don't know who keeps bringing them in here. ....but society is to blame.
Reply
#4
Yes, sets are exactly what you'd use to improve the efficiency.
Reply
#5
I believe your fourth line is wrong.
You have:
c = [i for i in a if a in b]
But it should be:
c = [i for i in a if i in b]
Edit: This was already said, never mind
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  List Overlap Trouble erfanakbari1 1 2,065 Mar-18-2019, 02:36 PM
Last Post: ichabod801

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020