CJCoding With Joseph
15per day

Count Matching Generic Values

Complete the generic method countMatches that 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 call GenericCounter.countMatches with 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.