Hello everybody...
Can anyone help me with this?:
I want to check out an array, if there is any number which is 3, or more times in a row.
IE:
int[] tmp= new int[7]{0,2,1,1,1,4,5}; // yes 3 duplicities starts at index 2
int[] tmp= new int[7]{0,2,2,1,1,1,1}; // yes 4 duplicities starts at index 3
any ideas?
Thanks for any answer.