Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

IN JAVA You will need to write a function int uniqueNumber(int[] array). The input of this function is an int array. This array contains only

IN JAVA

You will need to write a function int uniqueNumber(int[] array). The input of this function is an int array. This array contains only positive integers. Given that every element in this array appeared twice, except for one unique element which appeared only once. Your job is to find and return this unique number.

If every number in this array appeared twice, return -1.

If you can solve this problem using only 1 loop, youll get 5 extra points.

Sample input/output:

Input [3, 3, 2, 4, 4]

Output 2

image text in transcribed

LAB ACTIVITY 6.24.1: LAB: Unique Number UniqueNumber.java 1 public class UniqueNumber { public int uniqueNumber (int[]array) { 00 VOUWNE /* Your code goes here*/

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions