โ Back to Arrays
Question 322
Minimum and Maximum Together
Minimum and Maximum Together
The array{4, 9, 2, 15, 7, 1, 8}is given. In a single pass, find both the smallest and largest elements, then print them on one line separated by a space, minimum first: 1 15 The minimum is1and the maximum is15. There is no trailing space or newline.
Expected Output:
1 15
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.