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 7054453
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T03:37:42+00:00 2026-05-28T03:37:42+00:00

Sorry for the simple question, but I’m having a hard time finding the answer.

  • 0

Sorry for the simple question, but I’m having a hard time finding the answer.

When I compare 2 lists, I want to know if they are “equal” in that they have the same contents, but in different order.

Ex:

x = ['a', 'b']
y = ['b', 'a']

I want x == y to evaluate to True.

  • 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-28T03:37:43+00:00Added an answer on May 28, 2026 at 3:37 am

    You can simply check whether the multisets with the elements of x and y are equal:

    import collections
    collections.Counter(x) == collections.Counter(y)
    

    This requires the elements to be hashable; runtime will be in O(n), where n is the size of the lists.

    If the elements are also unique, you can also convert to sets (same asymptotic runtime, may be a little bit faster in practice):

    set(x) == set(y)
    

    If the elements are not hashable, but sortable, another alternative (runtime in O(n log n)) is

    sorted(x) == sorted(y)
    

    If the elements are neither hashable nor sortable you can use the following helper function. Note that it will be quite slow (O(n²)) and should generally not be used outside of the esoteric case of unhashable and unsortable elements.

    def equal_ignore_order(a, b):
        """ Use only when elements are neither hashable nor sortable! """
        unmatched = list(b)
        for element in a:
            try:
                unmatched.remove(element)
            except ValueError:
                return False
        return not unmatched
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Sorry for the simple question, but I am self taught and know that there
( I know this is probably a simple question to answer, but I don't
Sorry for the simple question but I feel like there's a smarter way to
Sorry if this is a dead simple question but I'm confused from the documentation
Sorry for the simple question but I'm on vacation reading a book on core
sorry for the simple question but how do you make a CAlayers using a
Hello I am sorry to bother you with such a simple question but this
I know it's a simple question but I really can't find anything on Google.
Sorry for this simple question, but i'm missing the forest through the trees. These
I'm sorry to ask such a simple question, but it's a specific question I've

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.