LeetCode-SQL-613. 直線上的最近距離

SELECT MIN(ABS(p1.x - p2.x)) AS shortest FROM point p1 JOIN point p2 ON p1.x != p2.x
相關文章
相關標籤/搜索