โ Back to Arrays
Question 319
Count Elements in a Range
Count Elements in a Range
The array{5, 12, 8, 20, 3, 15, 10}is given, along with boundslow = 8andhigh = 15. Count how many elements fall within[low, high]inclusive and print the count: 4 The matching elements are12,8,15, and10.
Expected Output:
4
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.