593. Valid Square

复制代码
package LeetCode_593

/**
 * 593. Valid Square
 * https://leetcode.com/problems/valid-square/
 *
 * Given the coordinates of four points in 2D space, return whether the four points could construct a square.
The coordinate (x,y) of a point is represented by an integer array with two integers.
Example:
Input: p1 = [0,0], p2 = [1,1], p3 = [1,0], p4 = [0,1]
Output: True

Note:
1. All the input integers are in the range [-10000, 10000].
2. A valid square has four equal sides with positive length and four equal angles (90-degree angles).
3. Input points have no order.
 * */
class Solution {
    /*
    * solution: HashSet + Geometry, check if Square by:
    * 1. if length of 4 slides are same and the length!=0
     *2. if length of 2 diagonals are same and the length!=0
     *Time complexity: O(1), Space complexity: O(1)
    * */
    fun validSquare(p1: IntArray, p2: IntArray, p3: IntArray, p4: IntArray): Boolean {
        //set for save distance for two point
        val set = HashSet<Int>()
        val arrays = Array(4) { IntArray(2) }
        arrays[0] = p1
        arrays[1] = p2
        arrays[2] = p3
        arrays[3] = p4
        for (i in arrays.indices) {
            for (j in 0 until i) {
                set.add(distance(arrays[i], arrays[j]))
            }
        }
        return set.size == 2 && !set.contains(0)
    }

    /**
     * return the distance of two point by formula: (x1-x2)*(x1-x2) + (y1-y2)*(y1-y2),
     * */
    private fun distance(array1: IntArray, array2: IntArray): Int {
        val x1 = array1[0]
        val y1 = array1[1]
        val x2 = array2[0]
        val y2 = array2[2]
        return (x1 - x2) * (x1 - x2) + (y1 - y2) * (y1 - y2)
    }

}
复制代码

 

posted @   johnny_zhao  阅读(80)  评论(0编辑  收藏  举报
编辑推荐:
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
阅读排行:
· DeepSeek 开源周回顾「GitHub 热点速览」
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET 10首个预览版发布:重大改进与新特性概览!
· AI与.NET技术实操系列(二):开始使用ML.NET
· .NET10 - 预览版1新功能体验(一)
点击右上角即可分享
微信分享提示