Junior — Senior
Finding the first non-repeating number in an array
livecode
Task condition
Task: identify the first element of an array of integers that occurs exactly once.
public static void main(String []args){
int[] numbers = {9, 4, 9, 6, 7, 4, 5};
}