|
57 | 57 | 2. Find the second largest number in the given array. [[Solution]](InterviewPrograms/src/com/java/array/SecondMaximum.java)
|
58 | 58 | 3. Find the second minimum number in the given array. [[Solution]](InterviewPrograms/src/com/java/array/SecondMinimum.java)
|
59 | 59 | 4. Find the missing Number in the given array of 1 to N. [[Solution]](InterviewPrograms/src/com/java/array/FindMissingNo.java)
|
60 | | -5. Write a Java Program to find the Intersection of two arrays. [[Solution]](InterviewPrograms/src/com/java/array/IntersectionOfTwoArrays.java) |
61 | | -6. Write a Java Program to find the Intersection of ***Two Sorted*** arrays. [[Solution]](InterviewPrograms/src/com/java/array/IntersectionOfSortedArrays.java) |
| 60 | +5. Write a Java Program to find the ***Intersection of two arrays.*** [[Solution]](InterviewPrograms/src/com/java/array/IntersectionOfTwoArrays.java) |
| 61 | +6. Write a Java Program to find the ***Intersection of Two Sorted*** arrays. [[Solution]](InterviewPrograms/src/com/java/array/IntersectionOfSortedArrays.java) |
62 | 62 | 7. Write a Java Program to find the ***Union of Two Arrays (UnSorted Array)***. [[Solution]](InterviewPrograms/src/com/java/array/UnionOfTwoArrays.java)
|
63 | 63 | 8. Write a Java Program to find the ***Union of Two Arrays (Sorted Arrays)***. [[Solution]](InterviewPrograms/src/com/java/array/UnionOfSortedArrays.java)
|
64 | 64 | 9. Write a Java Program to find the ***Union of Tow Arrays using HashSet***. [[Solution]](InterviewPrograms/src/com/java/array/UnionArrayUsingHashSet.java)
|
|
0 commit comments