[leetcode] 1232. Check If It Is a Straight Line

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.

Example 1:

Input: coordinates = [[1,2],[2,3],[3,4],[4,5],[5,6],[6,7]]
Output: true

Example 2:

Input: coordinates = [[1,1],[2,2],[3,4],[4,5],[5,6],[7,7]]
Output: false

Constraints:

  1. 2 <= coordinates.length <= 1000.
  2. coordinates[i].length == 2.
  3. -10^4 <= coordinates[i][0], coordinates[i][1] <= 10^4
  4. coordinates contains no duplicate point.

分析

题目的意思是:给你一个数组里面的数对是否在同一条直线上,最直观的判断方法是斜率,但是斜率可能会出现分母为0的情况,需要单独来处理,后面发现可以直接比较x1y2==x2y1就行了。这里的x和y是两数的两点的差值,具体过程看代码,也比较简单。

代码

class Solution:
    
    def checkStraightLine(self, coordinates: List[List[int]]) -> bool:
        d={}
        n=len(coordinates)
        
        x1=coordinates[1][0]-coordinates[0][0]
        y1=coordinates[1][1]-coordinates[0][1]
        for i in range(2,n,1):
            x2=coordinates[i][0]-coordinates[i-1][0]
            y2=coordinates[i][1]-coordinates[i-1][1]
            if(x1*y2!= x2*y1):
                return False
        return True

参考文献

[LeetCode] Python 3 56ms 92%

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

农民小飞侠

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值