โ Back to Arrays
Question 92
Linear Search
Linear Search
Read an integer N, then N integers into an array, then one more integer target. Search the array for target. If found, print 'Found at index K' (the first matching index). If not found, print 'Not found'.
Expected Output:
Found at index 2
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.