2차원 좌표 평면에 변이 축과 평행한 직사각형이 있습니다. 직사각형 네 꼭짓점의 좌표 [[x1, y1], [x2, y2], [x3, y3], [x4, y4]]가 담겨있는 배열 dots가 매개변수로 주어질 때, 직사각형의 넓이를 return 하도록 solution 함수를 완성해보세요.
class Solution {
public int solution(int[][] dots) {
int answer = 0;
int x = 0;
int y = 0;
for(int i=0; i<dots.length; i++){
for(int j=0; j<dots[i].length; j++){
if(i!=j){
if(dots[i][0]==dots[j][0]){
y=Math.abs(dots[j][1]-dots[i][1]);
} else if (dots[i][1]==dots[j][1]){
x=Math.abs(dots[j][0]-dots[i][0]);
}
}
}
}
answer = x*y;
return answer;
}
}