![]() |
VOOZH | about |
A Collectionis a group of individual objects represented as a single unit. Java provides Collection Framework which defines several classes and interfaces to represent a group of objects as a single unit.
Example:
Input : List = [3, 5, 18, 4, 6] Output: Min value of our list : 3 max value of our list : 18 Input : List = ['a', 'a', 'a'] Output: All elements are equal
Approach:
Below is the implementation of the above approach:
Min value of our list : 3 Max value of our list : 18
Time Complexity: O(N), where N is the length of the list.