Arrays Easy - Part I
I. Largest Element in the Array
Problem Statement
Given an array, we have to find the largest element in the array. (link)
Optimal Solution
We assume one element to be the maximum element, iterate through all the elements, and check if the assumed el...
chetan77.hashnode.dev5 min read