Missing Number | Multiple Approaches | Leetcode 268

Поділитися
Вставка
  • Опубліковано 8 січ 2025

КОМЕНТАРІ • 26

  • @anjanisharma3049
    @anjanisharma3049 10 місяців тому +3

    Hello, a simple way to solve this is by using the 1st approach sir mentioned in the video: class Solution {
    public:
    int missingNumber(vector& nums) {
    int n=nums.size();
    int sum=n*(n+1)/2;
    int s=0;
    for(int i=0;i

  • @sauravchandra10
    @sauravchandra10 10 місяців тому +1

    We can also use cyclic sort in this problem, which is both time and memory efficient.
    Code:
    class Solution {
    public:
    int missingNumber(vector& nums) {
    int n = nums.size();
    int i = 0;
    for(;i

  • @thefinalfit
    @thefinalfit 10 місяців тому +1

    Well explained as always

  • @learnwithazhar1703
    @learnwithazhar1703 10 місяців тому +1

    Amazingly explained!

  • @fit_tubes_365
    @fit_tubes_365 2 місяці тому +1

    Done by myself(only natural number sum approach i saw)

  • @oqant0424
    @oqant0424 10 місяців тому +1

    solved on my own using 2 approaches
    came here to learn something new
    Thanks
    POTD DONE[20.2.24] ✅✅

  • @theOmKumar
    @theOmKumar 10 місяців тому

    when we do l m){//we are on res idx or res is on left
    r = m;
    }
    else{//everything is fine till this idx,check for next
    l = m+1;
    }
    }
    return l or r doesn't matter;

  • @gauravbanerjee2898
    @gauravbanerjee2898 10 місяців тому

    Thanks a lot bhaiya ❤❤

  • @anuppatankar4294
    @anuppatankar4294 10 місяців тому

    Great video 👌🏻

  • @TheBusaSinger
    @TheBusaSinger 10 місяців тому +1

    Thanks for this!

  • @dayashankarlakhotia4943
    @dayashankarlakhotia4943 10 місяців тому

    good explanation sir.one correction in java code in 3rd approach int result =n;

  • @souravjoshi2293
    @souravjoshi2293 10 місяців тому

    Thank mik. if you get time, can you please post weekly contest Qn-4 of this week

  • @faizanalam8823
    @faizanalam8823 10 місяців тому

    amazing !

  • @adik3680
    @adik3680 10 місяців тому +1

    Please make the pending video on delete implementation in trie.

  • @manimanohar_001
    @manimanohar_001 10 місяців тому

    Bhaiya bit manipulation pe bhi playlist bana do pls

  • @aws_handles
    @aws_handles 10 місяців тому

    Niceee. Thanks

  • @ujjawaltyagi8540
    @ujjawaltyagi8540 10 місяців тому

    can any one tell me when we use sort(v.begin(, v.end()) in c++ which type of sort it is? we take worst case complexity as nlogn then what is best case and average case ?

  • @project_eth
    @project_eth 10 місяців тому

    can we solve this question by using hash sets, since one main property of hash sets is we cannot add repeated numbers and that way the time complexity will also be O(1)

    • @aws_handles
      @aws_handles 10 місяців тому

      Yes but space will become O(n)

  • @nish0798
    @nish0798 10 місяців тому

    @codestorywithmik. I have a doubt if we store 0 in res instead of n this code is not working why so is any other way to make changes in code if we want to store 0 in res instead of n
    one more how we will come to know in these types of questions whether we have to store n in result or 0 in res
    plz reply bro

  • @prajwalshaw9217
    @prajwalshaw9217 10 місяців тому

    Hello bhaiya . Can u please make a video on q no.4 of leetcode biweekly 124...which happened on last saturday. Thanks.

  • @Abhay14
    @Abhay14 10 місяців тому

    bhaiya jo 3rd approach me code likha h vha O(nlogn) time complexity nhi aaeggi

  • @viditvaish7317
    @viditvaish7317 10 місяців тому

    sir please leetcode ques number 621 (Task Scheduler) bata dejiye

  • @shabananoor9423
    @shabananoor9423 10 місяців тому

    ❤❤