CJCoding With Joseph

Second Smallest Element

The array {7, 3, 9, 1, 5} is given. Find and print the SECOND smallest element (the smallest value that is greater than the overall minimum):

3

The smallest element is 1, so the second smallest is 3. Do not sort the array; use a single pass tracking two values.

Expected Output:

3
Topics:
Arrays
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.