セクション 1. 章 3
single
Challenge: Collinearity of Points
メニューを表示するにはスワイプしてください
Definition
Collinearity means that three or more points lie on a single straight line. In other words, if you can draw a straight line that passes through all the given points without changing direction, those points are collinear.
タスク
スワイプしてコーディングを開始
In geometric modeling, determining whether three points are collinear is a fundamental concept. Building on your understanding of representing points in Python, your task is to implement a function that checks if three given points in the plane are collinear.
- The function must accept three points, each represented as a tuple of two numbers.
- The function must return
Trueif the points are collinear, andFalseotherwise. - The function must use the mathematical property that the area of the triangle formed by three collinear points is zero.
解答
すべて明確でしたか?
フィードバックありがとうございます!
セクション 1. 章 3
single
AIに質問する
AIに質問する
何でも質問するか、提案された質問の1つを試してチャットを始めてください