Rectangle with Maximum Area using Java Pair
Given an array of pairs containing length and breadth of rectangles. The task is to find the maximum area of the rectangle. Examples: Input: (1, 2), (3, 5), (1, 1), (4, 2) Output: 15 Input: (3, 5), (5, 5), (9, 10) Output: 90Recommended PracticeMaximum Area RectangleTry It! Approach: Use user defined