i need run this code class temp { public static void function(int [] arr) { int n = arr.length; Hashtable hash = new Hashtable<>(); for(int i=0; i
i need run this code
class temp
{
public static void function(int [] arr)
{
int n = arr.length;
Hashtable<Integer, Integer> hash = new Hashtable<>();
for(int i=0; i<n;i++)
{
if (hash.containsKey(arr[i]))
{
int a = hash.get(arr[i]);
if(a==2)
{
System.out.println("element that is present three times is: "+arr[i]);
}
else
{
hash.put(arr[i], a+1);
}
}
else
{
hash.put(arr[i], 1);
}
}
}
public static void main(String args[])
{
//create an array of 101 elements
int [] arr = { 1, 2, 3, 4, 5, 6, 6, 8, 8, 8};
//call the function
function(arr);
}
}
Step by step
Solved in 5 steps with 3 images