题目

给定一个数组 points ,其中 points[i] = [xi, yi] 表示 X-Y 平面上的一个点,如果这些点构成一个 回旋镖 则返回 true 。

回旋镖 定义为一组三个点,这些点 各不相同 且 不在一条直线上 。

示例 1:

输入:points = [[1,1],[2,3],[3,2]]
输出:true

示例 2:

输入:points = [[1,1],[2,2],[3,3]]
输出:false

提示:

points.length == 3
points[i].length == 2
0 <= xi, yi <= 100

来源:力扣(LeetCode)
链接:https://leetcode.cn/problems/valid-boomerang
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

思路

记第一点和第二个点连线的斜率为k1,第一点和第三个点连线的斜率为k2,k1不等于k2即满足条件。

代码

  1. class Solution {
  2. public boolean isBoomerang(int[][] points) {
  3. int x1 = points[0][0];
  4. int y1 = points[0][1];
  5. int x2 = points[1][0];
  6. int y2 = points[1][1];
  7. int x3 = points[2][0];
  8. int y3 = points[2][1];
  9. return (x1 - x2) * (y1 - y3) != (y1 - y2) * (x1 - x3);
  10. }
  11. }