缀点专题

1232.缀点成线(Java)

题目描述: 给定一个数组 coordinates ,其中 coordinates[i] = [x, y] , [x, y] 表示横坐标为 x、纵坐标为 y 的点。请你来判断,这些点是否在该坐标系中属于同一条直线上。 输入: coordinates = [[1,2],[2,3],[3,4],[4,5],[5,6],[6,7]] 输出: true 代码实现: //缀