Junior — Senior
Determining the first unique number in the array
livecode
Task condition
The task is to identify the first value that appears only once in an array of integers.
public static void main(String[] args) {
int[] numbers = {9, 4, 9, 6, 7, 4, 5};
}