CJCoding With Joseph

Count Occurrences in Array

An array nums has been created with the values {10, 20, 10, 30, 10} and target = 10. Count how many times target appears, then print in this exact format:

10 appears 3 times

Expected Output:

10 appears 3 times
Topics:
Arrays
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (p, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.