Question: Rewrite this method as a generic method that is in a non-generic class. public boolean findIt(int[] data, int target) { boolean found = false; for(int

Rewritethis method as ageneric methodthat is in a non-generic class.

public boolean findIt(int[] data, int target) {

boolean found = false;

for(int i = 0; i

if(data[i] == target) {

found = true;

}

}

return found;

}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!