美文网首页
1232. 缀点成线

1232. 缀点成线

作者: Aedda | 来源:发表于2021-05-08 18:26 被阅读0次

缀点成线

class Solution:
    @staticmethod
    def checkStraightLine(coordinates: list):
        '''
        默认x差 * y差 == 默认y差 * x差   全为ture 则为直线
        '''
        x_subtract = coordinates[1][0] - coordinates[0][0]
        y_subtract = coordinates[1][1] - coordinates[0][1]
        return all(x_subtract * (y - coordinates[0][1]) == y_subtract * (x - coordinates[0][0]) for x, y in coordinates)


coordinates = [[1, 2], [2, 3], [3, 4], [4, 5], [5, 6], [6, 7]]
print(Solution().checkStraightLine(coordinates))

相关文章

  • 1232. 缀点成线

    缀点成线

  • 每日一题-1232. 缀点成线

    题目 给定一个数组 coordinates ,其中 coordinates[i] = [x, y] , [x, y...

  • 河满子.蓝天缀点白云

    蓝天缀点白云,楼群帝王穿空。满堂金玉水贝村,造就珠宝英雄。夜半潇潇风雨,晓来多少飞红。 取得一枚...

  • LeetCode 1232. Check If It Is a

    @(LeetCode) 问题描述 给定一个坐标点数组,每个坐标点表示为:coordinates[i] = [x, ...

  • LeetCode 1232. Check If It Is a

    You are given an array coordinates, coordinates[i] = [x, ...

  • Leetcode 1232. Check If It Is a

    文章作者:Tyan博客:noahsnail.com[http://noahsnail.com] | CSDN[ht...

  • 生活日常

    如果—— 我还能别出心裁地给西红柿榨成汁 又记得加点糖 出其不意地 再缀点西蓝花 ——摊出个饼来 热爱生活的我 ...

  • 恋一片桃花

    一抹粉色缀点着天空, 不妖媚,素雅如仙。 桃花源, 四季是春。 风一动, 便成沉醉的桃花海。 微笑着感动, 这静谧...

  • 咏梅

    霜雪裹粉妆, 缀点红颜爱。 孤傲风中立, 原是引春来。

  • 眯成线

    拉宝边晒太阳边舔着毛,突然窗口路过一只野猫,还对着它喵了一下。拉宝警惕地抬头抬眼看。 关键是都眯成一条细线了,你还...

网友评论

      本文标题:1232. 缀点成线

      本文链接:https://www.haomeiwen.com/subject/muxpdltx.html