Problem Description
You are given an array coordinates
, coordinates[i] = [x, y]
, where [x, y]
represents the coordinate of a point. Check if these points make a straight line in the XY plane.
Key Insights
- To determine if all points lie on a straight line, we can use the concept of the slope between consecutive points.
- If the slope between any two segments formed by three points is the same, then the points are collinear.
- The slope can be calculated using the formula (y2 - y1) / (x2 - x1). To avoid division and handle vertical lines, we can use cross multiplication.
Space and Time Complexity
Time Complexity: O(n)
Space Complexity: O(1)
Solution
To solve the problem, we will:
- Use the first two points to establish a reference slope.
- Iterate through the remaining points and check if they maintain the same slope with the first point using cross multiplication to avoid division.
- If all points conform to the same slope, return true; otherwise, return false.