Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6341803
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T20:06:42+00:00 2026-05-24T20:06:42+00:00

I have two large lists: a = [[‘abcdefghijklmno’, ‘foo’, ‘bar’], … ] b =

  • 0

I have two large lists:

a = [['abcdefghijklmno', 'foo', 'bar'], … ]
b = [['abcdefghij12345', 'foo', 'bar'], … ]

I’m interested in all members of a which don’t have a corresponding entry in b, and vice versa, based on comparing a[n][0] and b[n][0] for all n in a and b. I create two sets of these sublist items, which allows me to do set_a.difference(set_b), and vice versa, which is very fast. But creating two lists based on the remaining items in a and b is (perhaps obviously) slower:

def remaining(ls ,y, z):
    return [i for i in ls if i[0] in y.difference(z)]

where ls is either a or b, and y and z are the two sets detailed above. Is there any point in rethinking the structure of a and b to speed this up (e.g. using dicts with a[0] and b[0] values as the keys?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T20:06:43+00:00Added an answer on May 24, 2026 at 8:06 pm

    I suspect that your test in the list comprehension is calling y.difference for each element. Try this:

    def remaining(ls, y, z):
        diff = y.difference(z)
        return filter(lambda i: i[0] in diff, ls)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a large number of two-membered sub-lists that are members of a list
I have two batch files which is used to run a large C++ build,
At the moment I have two (maybe more) unordered lists which are sortable with
I have two very large lists and to loop through it once takes at
I'm using R, and I'm a beginner. I have two large lists (30K elements
I have two large identical-sized files. One is ASCII plain text, and the other
I have two large (~100 GB) text files that must be iterated through simultaneously.
I have two large source trees. One of them has some out of date
I have two (very large) text files. What is the fastest way - in
I have two databases in SQL2k5: one that holds a large amount of static

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.