cleared my written.
cleared f2f questions also. but failed to answer all questions.
1
Sigiloso
21 de mai. de 2020
//Merge two sorted arrays
public static int[] mergeArrays(int[] a,int[]b)
{
int m=0;int n=0;
int k=a.length+b.length;
int[] c=new int[k];
int j=0;
while(m