Question: Can I get a solution in Java Vou are given an implementation of a function: class Solution { public int solution(int M, int [] A);

Can I get a solution in Java
Vou are given an implementation of a function: class Solution { public int solution(int M, int [] A); } that, given an integer M and an array A consisting of N non-negative integers, which are not greater than M, returns the value (or one of the values) that occurs most often in this array. For example, given M=3 and array A such that: A[0]=1A[1]=2A[2]=3A[3]=3A[4]=1A[5]=3A[6]=1 the function may return 1 or 3. The attached code is still incorrect for some inputs. Despite the error(s), the code may produce a correct diswer for the example test cases. The goal of the exercise is to find and fix the bug(s) in the implementation. You can modify at most four lines. Assume that: - N is an integer within the range [1..200,000]; - M is an integer within the range [1..10,000]
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
