"Check If It Is a Straight Line,"는 주어진 좌표들이 모두 직선 상에 있는지 확인하는 문제입니다.문제 설명:주어진 n개의 점이 직선 상에 있는지 확인하는 함수 checkStraightLine을 구현하세요. 주어진 점들이 직선에 위치하면 true, 그렇지 않으면 false를 반환합니다. Dart 코드:class Solution { bool checkStraightLine(List> coordinates) { // 첫번째 점과 두번째 점의 기울기를 계산 해봄 (y2 -y1 / x2 - x1) int x1 = coordinates[0][0], y1 = coordinates[0][1]; int x2 = coordinates[1][0], y2 = coordinates[1..