← Back to Methods
Question 179
Count Matching Generic Values
Count Matching Generic Values
Complete the generic methodcountMatchesthat takes an array and a target value, then returns how many times the target appears in the array. Use.equals()for comparison — not==. IMPORTANT: Do NOT write a main method. A hidden test will callGenericCounter.countMatcheswith a String array and an Integer array and print the count of matches for each.
Expected Output:
3 2
Topics:
GenericsMethods
Code Editor
1
Tab to indent · Ctrl+Enter to run · Ctrl+Space to expand shortcuts (sysout, psvm, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.