1037. 有效的回旋镖

class Solution {
    public boolean isBoomerang(int[][] points) {
 
        int[] v1 = {points[1][0] - points[0][0], points[1][1] - points[0][1]};
        int[] v2 = {points[2][0] - points[0][0], points[2][1] - points[0][1]};
        return v1[0] * v2[1] - v1[1] * v2[0] != 0;
 
    }
}
posted @ 2022-06-08 21:41  求索萌新  阅读(26)  评论(0)    收藏  举报