3371. Identify the Largest Outlier in an Array | Hash Table | Math

Поділитися
Вставка

КОМЕНТАРІ • 12

  • @ARYANMITTAL
    @ARYANMITTAL  21 день тому +5

    C++ Code - leetcode.com/problems/identify-the-largest-outlier-in-an-array/submissions/1467120998/
    Please do share with your friends or social media, it will be super super helpful 🥺

    • @goldenx2417
      @goldenx2417 20 днів тому

      Thank you Bhaiya for cpp solution ❤

  • @stith_pragya
    @stith_pragya 21 день тому +5

    Thanks a ton for the help......🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻
    Great Explaination.......
    Keep posting such videos, it is really helpful.....🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻

  • @debaratighatak2211
    @debaratighatak2211 18 днів тому +1

    your explanation is soo good 🙏 thanks for covering all the edge cases so well

  • @travellingsim2174
    @travellingsim2174 13 днів тому

    Great explanation!

  • @neversettle756
    @neversettle756 17 днів тому

    Great explanation

  • @MANIKANTAKORIMILLI-k8r
    @MANIKANTAKORIMILLI-k8r 20 днів тому

    Great video aryan.!

  • @VK_BRANDING
    @VK_BRANDING 15 днів тому

    great man >>

  • @Its_Shubham_Negi
    @Its_Shubham_Negi 20 днів тому

    Thanks bhaiya !!!!

  • @devsharma181
    @devsharma181 19 днів тому

    Why are we maximising the outlier ? Why not simply assigning answer to the potential outlier

  • @dayashankarlakhotia4943
    @dayashankarlakhotia4943 20 днів тому

    public int getLargestOutlier(int[]nums){
    int ans=Integer.MIN_VALUE,totSum=0;
    Mapmpp=new HashMap();
    for(int num:nums){
    totSum+=num;
    mpp.put(num*2,mpp.getOrDefault(num*2,0)+1);
    }
    for(int num:nums){
    int sum=totSum-num;
    if(mpp.getOrDefault(sum,0)>=2||(mpp.getOrDefault(sum,0)==1)&&(sum!=num*2))
    ans=Math.max(ans,num);
    }
    return ans;
    }
    🎉❤