|
64 | 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 | | -12. Write a Java Program to reverse the given array without using additional Array. [[Solution]](InterviewPrograms/src/com/java/array/ReverseArray.java) |
| 67 | +12. Write a Java Program to ***Reverse the given array without using additional Array.*** [[Solution]](InterviewPrograms/src/com/java/array/ReverseArray.java) |
68 | 68 | 13. Write a program to find the ***Most Frequent Element*** in an given array. [[Solution]](InterviewPrograms/src/com/java/array/FindMostFrequent.java)
|
69 | 69 | 14. Write a program to find the ***Most Frequent Element using Sorting***. [[Solution]](InterviewPrograms/src/com/java/array/FindMostFrequentUsingSorting.java)
|
70 | 70 | 15. Write a program to find the ***Most Frequent Element using HashTable***. [[Solution]](InterviewPrograms/src/com/java/array/FindMostFrequentUsingHashtable.java)
|
|
0 commit comments