Minimum Area Rectangle | Most Asked Google Interview Question

แชร์
ฝัง
  • เผยแพร่เมื่อ 9 พ.ย. 2024

ความคิดเห็น • 3

  • @CodingWithAnurag-1086
    @CodingWithAnurag-1086  7 หลายเดือนก่อน

    Solution code -
    class Solution {
    public:
    int minAreaRect(vector& points) {
    sort(points.begin(),points.end());
    int ans = INT_MAX;
    int n = points.size();
    set set;
    for (int i=0;i

  • @gagandeepsingh1533
    @gagandeepsingh1533 4 หลายเดือนก่อน +1

    why are we doing sorting here?

    • @CodingWithAnurag-1086
      @CodingWithAnurag-1086  4 หลายเดือนก่อน

      Thanks for pointing it out. Sorting is actually not required. I had done sorting so that solution visualisation becomes easy and even if we add sorting, it doesn't impact the overall time complexity. The overall time complexity is still O(n*n*logn)