摘要: 1037. 有效的回旋镖 class Solution { public boolean isBoomerang(int[][] points) { int[] v1 = {points[1][0] - points[0][0], points[1][1] - points[0][1]}; int[] v2 = {point 阅读全文
posted @ 2022-06-08 21:41 求索萌新 阅读(26) 评论(0) 推荐(0)