Analysis MethodsComplete Array Methodsโซ MaxOn this pageโซ Max Returns the maximum value in the array. ๐ Syntaxโ TypeOfArray maximum() ๐ฎ Exampleโ DataTomeAnalysis<int, long int> intAverage(10);for (int i = 1; i < 5; i++) { intAverage.push(i);}intAverage.maximum(); // Will return 4 โฑ Complexityโ Linear (O(n)) in the point count.