leetcode [1037] 有效的回旋镖
Contact me:
Blog -> https://cugtyt.github.io/blog/index
Email -> cugtyt@qq.com
GitHub -> Cugtyt@GitHub
回旋镖定义为一组三个点,这些点各不相同且不在一条直线上。
给出平面上三个点组成的列表,判断这些点是否可以构成回旋镖。
示例 1:
输入:[[1,1],[2,3],[3,2]]
输出:true
示例 2:
输入:[[1,1],[2,2],[3,3]]
输出:false
提示:
points.length == 3
points[i].length == 2
0 <= points[i][j] <= 100
斜率不相等表示成立,但是由于斜率可能出现除0问题,因此改写为乘法
class Solution:
def isBoomerang(self, points: List[List[int]]) -> bool:
delta_x1 = points[0][0] - points[1][0]
delta_y1 = points[0][1] - points[1][1]
delta_x2 = points[1][0] - points[2][0]
delta_y2 = points[1][1] - points[2][1]
return delta_x1 * delta_y2 != delta_x2 * delta_y1