Question: For this lab you will implement several methods to determine if an array of integers in a certain range contains duplicate elements. First, you need

For this lab you will implement several methods to determine if an array of integers in a certain range contains duplicate elements. First, you need to write a method that receives two integers n and m and builds and returns an array of length n that contains random integers in the 0 to m - 1 range. Then implement the following methods to determine if the array contains duplicates 1. Compare every element in the array with every other element in the array using nested loops as follows: public static boolean hasDuplicates (int CJA) boolean duplicates = false for (int i-0;i
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
