KOTLIN 學習 : 基礎問題 : Leetcode Easy 1779. Find Nearest Point That Has the Same X or Y Coordinate

Leetcode 問題: 1779. Find Nearest Point That Has the Same X or Y Coordinate

程式: Github


Array 這次使用 indices 的寫法


自行測試時, 二維陣列可以這樣產生

val points = arrayOf(intArrayOf(1,2), intArrayOf(3,1), intArrayOf(2,4),
intArrayOf(2, 3), intArrayOf(4,4))


測試結果: (和最快解法的演算法大致相同)











留言

熱門文章