DIY: Minimum Area Rectangle
Understand how to calculate the minimum area rectangle with sides parallel to the axes given points on a plane. Learn to implement a function that returns the smallest rectangle area or zero if none exists, improving skills for coding interviews focused on geometry and arrays.
We'll cover the following...
We'll cover the following...
Problem statement
Given an array of points in the X-Y plane points, where ...