Menu
Coddy logo textTech

27. Second Largest Element

Lesson 28 of 31 in Coddy's 30 Days of Logic Building in C++ course.

challenge icon

Challenge

Easy

Write a function to find the second largest element in an array of integers.

  • Input: An array of integers, e.g., [5, 2, 8, 9, 1]
  • Output: The second largest element, e.g., 8

Try it yourself

#include <vector>
using namespace std;

int findSecondLargest(vector<int> arr) {
    // Write code here
}

All lessons in 30 Days of Logic Building in C++