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

  • Home
  • SEARCH
  • 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 7735235
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T07:27:00+00:00 2026-06-01T07:27:00+00:00

If I have two different arrays and all I can do is check whether

  • 0

If I have two different arrays and all I can do is check whether two elements in the arrays are equal (in other words, there is no comparison function (beyond equals) for the elements to sort them), is there any efficient way to check whether one array is a permutation of the other?

  • 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-06-01T07:27:01+00:00Added an answer on June 1, 2026 at 7:27 am

    Words Like Jared’s brute force solution should work, but it is O(n^2).

    If the elements are hashable, you can achieve O(n).

    def isPermutation(A, B):
        """
        Computes if A and B are permutations of each other.
        This implementation correctly handles duplicate elements.
        """
        # make sure the lists are of equal length
        if len(A) != len(B):
            return False
    
        # keep track of how many times each element occurs.
        counts = {}
        for a in A:
            if a in counts: counts[a] = counts[a] + 1
            else: counts[a] = 1
    
        # if some element in B occurs too many times, not a permutation
        for b in B:
            if b in counts:
                if counts[b] == 0: return False
                else: counts[b] = counts[b] - 1
            else: return False
    
        # None of the elements in B were found too many times, and the lists are
        # the same length, they are a permutation
        return True
    

    Depending on how the dictionary is implemented (as a hashset vs a treeset), this will take either O(n) for hashset or O(n log n) for treeset.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have two arrays containing the same elements, but in different orders, and I
Hey guys. I have a question. I have two different arrays with different structure
I have two set of arrays in different MYSQL table. This what I want
Hi I have a text file containing two arrays and one value(all integers) like
I have two arrays with different attributes for the objects contained in each. participants
I have two different ways of displaying items in a WPF application. The first
I have two different grid controls on the same form. They share the same
I have two different-sized monitors, connected together using (I believe) TwinView. I tried System.out.println(Toolkit.getDefaultToolkit().getScreenSize());
I have two different tables, lead and click. I would like to query MySQL
We have two different ldap providers in two different physical office locations. When I

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.