Closed srinivasboga closed 2 months ago
Create a function to find the second highest number in an array.
This issue is related to PR #4.
The goal is to implement a method that accepts an array of integers and returns the second highest unique number.
{5, 13, 4, 21, 13, 27, 2, 59, 59, 34}
59
Summary:
Create a function to find the second highest number in an array.
Related Pull Request:
This issue is related to PR #4.
Details:
The goal is to implement a method that accepts an array of integers and returns the second highest unique number.
Checklist:
Example Input/Output:
{5, 13, 4, 21, 13, 27, 2, 59, 59, 34}
59
(the second highest number)Additional Notes: