Given an array of integers, where all elements but one occur twice, find the unique element.
inputArray = [1, 2, 3, 4, 3, 2, 1]- The unique element is
4.
- The unique element is
- Complete the
lonelyIntegerfunction in the editor below. lonelyIntegerhas the following parameter(s):int inputArray[n]: an array of integers
int: the element that occurs only once
- The first line contains a single integer,
n, the number of integers in the array. - The second line contains
nspace-separated integers that describe the values ininputArray.
$1 \le n \le 100$ - It is guaranteed that
nis an odd number and that there is one unique element. -
$0 \le inputArray[i] \le 100$ , where$0 \le i \le n$ .