Make sure to join Discord for active Discussions during & post contest - discord.gg/5y4XTfeb
@crazymemes40809 ай бұрын
class Solution { public: int minRectanglesToCoverPoints(vector& points, int w) { int n = points.size(); sort(points.begin() , points.end()); int ans = 1; int j = 0; int i = 0; while(i