1.给四个点,不分顺序,求是否为矩形(100%) /** * struct Point { * int x; * int y; * Point(int xx, int yy) : x(xx), y(yy) {} * }; */ class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * 返回N个0或1,1表示对应的那组数据是矩形 * @param N int整型 * @param points Point类vector<vecto...