Question: Please code in java You are given three arrays A, B, and C of size N, M, and K respectively. You are allowed to remove
Please code in java


You are given three arrays A, B, and C of size N, M, and K respectively. You are allowed to remove any number from C and insert it at any position in B. Your task is to make arrays A and B the same. If it is possible, then print Yes. Otherwise, print No. Input format The first line contains T denoting the number of test cases. Now, T lines follow. For each test case, the first line will contain three space-separated integers N, M, and K denoting the size of A, B , and C respectively. For each test case, the next line will contain N space-separated elements of array A denoted as Aj. For each test case, the next line will contain M space-separated elements of array B denoted as Bi. For each test case, the next line will contain K space-separated elements of array C denoted as Ci. Output format For each test case, if it is possible to make both the arrays equal, then print Yes. Otherwise, print No. The output must be printed in a new line. Constraints 1
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
