-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy path0593-valid-square.js
38 lines (35 loc) · 953 Bytes
/
0593-valid-square.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/**
* 593. Valid Square
* https://leetcode.com/problems/valid-square/
* Difficulty: Medium
*
* Given the coordinates of four points in 2D space p1, p2, p3 and p4, return true if the
* four points construct a square.
*
* The coordinate of a point pi is represented as [xi, yi]. The input is not given in any order.
*
* A valid square has four equal sides with positive length and four equal angles (90-degree
* angles).
*/
/**
* @param {number[]} p1
* @param {number[]} p2
* @param {number[]} p3
* @param {number[]} p4
* @return {boolean}
*/
var validSquare = function(p1, p2, p3, p4) {
const helper = (a, b) => (a[0] - b[0]) ** 2 + (a[1] - b[1]) ** 2;
const points = [p1, p2, p3, p4];
const set = new Set();
for (let i = 0; i < 4; i++) {
for (let j = i + 1; j < 4; j++) {
const d = helper(points[i], points[j]);
if (!d) {
return false;
}
set.add(d);
}
}
return set.size === 2;
};