Check whether an Array is subset of another Array
“Check whether an Array is subset of another Array” is a basic problem which can be solved using multiple methods like brute-force, sorting, binary search and hashing. Here, in this problem, we are given two arrays; arr1 and arr2 and our task is to write a program to check whether...