Maximum and Minimum Element in an Array - DSA Question 1
Problem Statement:
Given an array A of size N your task is to find the minimum and maximum elements in the array containing integers.
Example 1:
Input:
N = 6
A[] = {3, 2, 1, 56, 10000, 167}
Output: 1 10000
Explanation: minimum and maximum elements of...
dragon9.hashnode.dev4 min read