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
Get step-by-step solutions from verified subject matter experts
