|
61 | 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 | | -9. Write a Java Program to find the ***Union of Tow Arrays using HashSet***. [[Solution]](InterviewPrograms/src/com/java/array/MostRepeatedChar.java) |
| 64 | +9. Write a Java Program to find the ***Union of Tow Arrays using HashSet***. [[Solution]](InterviewPrograms/src/com/java/array/UnionArrayUsingHashSet.java) |
65 | 65 | 10. Write a Java Program to ***Move all Zero to End of the Array***. [[Solution]](InterviewPrograms/src/com/java/array/MoveAllZerosToEnd.java)
|
66 | 66 | 11. Write a Java Program to ***Move all Zeros to Start of the Array***. [[Solution]](InterviewPrograms/src/com/java/array/MoveAllZerosToFront.java)
|
67 | 67 | 12. Write a Java Program to reverse the given array without using additional Array. [[Solution]](InterviewPrograms/src/com/java/array/ReverseArray.java)
|
|
0 commit comments