We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Arrays are said to be equal if and only if both arrays contain the same elements and the frequencies of each element in both arrays are the same.
Examples:
Input: arr1[] = {1, 2, 3, 4, 5}, arr2[] = {5, 4, 3, 2, 1} Output : Equal Explanation: As both the arrays contain same elements.
The text was updated successfully, but these errors were encountered:
can you assign this to me?
Sorry, something went wrong.
No branches or pull requests
Arrays are said to be equal if and only if both arrays contain the same elements and the frequencies of each element in both arrays are the same.
Examples:
The text was updated successfully, but these errors were encountered: