import java.util.*;
class Solution {
public int solution(int[][] dots) {
double[] line = new double[6];
int index = 0;
for(int i = 0; i < 3; i++) {
for(int j = i + 1; j < 4; j++) {
double slope
= (double)(dots[i][1] - dots[j][1]) / (double)(dots[i][0] - dots[j][0]);
line[index] = slope;
index++;
}
}
for(int i = 0; i < 5 ; i++){
for(int j = i + 1; j < 6; j++) {
if (line[i] == line[j]) return 1;
}
}
return 0;
}
}
'Playground > 자바문제집' 카테고리의 다른 글
[프로그래머스] 평균 구하기 (0) | 2023.02.07 |
---|---|
[프로그래머스] 약수의 합 (0) | 2023.02.07 |
[프로그래머스] 다항식 더하기 (0) | 2023.02.07 |
[프로그래머스] OX퀴즈 (0) | 2023.02.06 |
[프로그래머스] 저주의 숫자 3 (0) | 2023.02.06 |