I have a list of names in an array, and there is some redundancy in it. I was able to get only unique names to print, but I need a way to print the first line, skip the printing however many times there was a redundancy, then continue printing the next name (all redundant instances were always next to eachother). Here is what I have for that part so far:
int x = 1;
int skipCount = 0;
while (x<i){
if (titles[x].length() == titles[x-1].length()){
//do nothing
skipCount++;
}
else{
System.out.printf("%s\n", titles[x]);
}
x++;
}
So basically, how would I go about skipping the else statement 'skipCount' times, then have it start again? I haven't found much about this and am relatively new to java.
i? – ChrisW Aug 20 '12 at 21:50length? – oldrinb Aug 20 '12 at 21:50Set? That would remove duplicates for you upon insertion. – Dan W Aug 20 '12 at 21:50i = titles.length– oldrinb Aug 20 '12 at 21:50