I have 2 arrays..each array have more than one String values..but array sizes are not same.. Say for example, First array contains elements like "a", "b","c","d", "e". Second array contains elements like "a", "b","c" My task is to pick the missed ones from the array..In this case, I need to get the values as "d", "e"..
Just of example, I given you a 5 element size array..but I need to arrive a common algorithm to find the differences in "n" size array..
Pl provide me your valuable tips sothat I could proceed further to achive this.