Member-only story
[IMP] Javascript | Arrays | Easy Coding Questions
Find the Largest element in an array
1 min readOct 13, 2022
Example 1:
Input: arr[] = {2,5,1,3,0};
Output: 5
Explanation: 5 is the largest element in the array.
Find Second Largest Element in an array
Example 1:
Input: [1,2,4,7,7,5]
Output: Second Largest : 5
Explanation: The elements are as follows 1,2,3,5,7,7 and hence second largest of these is 5
Check if an Array is Sorted
Example 1:
Input: N = 5, array[] = {1,2,3,4,5}
Output: True.
Explanation: The given array is sorted i.e Every element in the array is smaller than or equals to its next values, So the answer is True.