Check if Two Arrays are Equal or not
Problem Statement
Given two arrays A and B of equal size N, the task is to find if given arrays are equal or not. Two arrays are said to be equal if both of them contain same set of elements, arrangements (or permutation) of elements may be different though.
Note: If there are repetitions, then counts of repeated elements must also be same for two array to be equal.
Example 1
Example 2
Task
Complete check() function which takes both the given array and their size as function arguments and returns true if the arrays are equal else returns false.The 0 and 1 printing is done by the driver code.
Expected Time Complexity : O(N)
Expected Auxiliary Space : O(N)
Constraints :
1 <= N <= 107
1 <= A[], B[] <= 1018
0 Comments