Exercise 1: Finding Max in an Array
Let's generalize the function of finding a max element in an array by using templates.
We'll cover the following...
Problem Statement
In this exercise, you need to define a Template Class type function array_max
that will generalize the function such that it finds the ...