Find the Element that Appears Once in Sorted Array | GFG Solution | Searching and Sorting

Поділитися
Вставка
  • Опубліковано 12 лис 2024

КОМЕНТАРІ • 40

  • @nikhilgoyal8340
    @nikhilgoyal8340 3 роки тому +13

    After 12 mins of your video explanation, I was able to solve it myself. Great work. It was a tricky one.

    • @Pepcoding
      @Pepcoding  3 роки тому

      Glad it helped! and If you like our efforts, please upvote the comments written by the students about Pepcoding here (www.quora.com/What-are-the-good-websites-to-learn-data-structures-and-algorithms )

  • @SaumyaSharma007
    @SaumyaSharma007 Рік тому +3

    respect for pepcoding.....
    your explanation is so good that I was able to code just after your intuition......
    thank u so much

  • @swacharahman5084
    @swacharahman5084 Рік тому +1

    Best explanation on the internet, in this Problem.... Genius

  • @raghavsinghal22
    @raghavsinghal22 Рік тому +1

    thanks for this easy explanation!

  • @deepikakanaparthi3472
    @deepikakanaparthi3472 5 місяців тому +1

    Thank you

  • @DheerajDivaker
    @DheerajDivaker Рік тому +1

    @manisha, tu school mein bhi acha smjhati thi aur yha bhi :)

  • @RohitKumar-sq8mn
    @RohitKumar-sq8mn 3 роки тому +6

    Ma'am maza aa gya kya mst explaination kiya h apne

    • @Pepcoding
      @Pepcoding  3 роки тому +1

      Thank you so much and If you like our efforts, please upvote the comments written by the students about Pepcoding here (www.quora.com/What-are-the-good-websites-to-learn-data-structures-and-algorithms )

    • @freshcontent3729
      @freshcontent3729 3 роки тому

      What is the tiime compileixty of the solution in this video ?

    • @vanditkhuranapvt
      @vanditkhuranapvt 2 роки тому

      @@freshcontent3729 O(logn)

  • @saisriangajala8399
    @saisriangajala8399 3 роки тому +4

    Crystal clear explanation mam.. Thank you so much...

    • @freshcontent3729
      @freshcontent3729 3 роки тому

      What is the tiime compileixty of the solution in this video ?

  • @Aditya-kumar-129
    @Aditya-kumar-129 2 роки тому +1

    Thanks for explaining such complex question in such a simple way to .

    • @Pepcoding
      @Pepcoding  2 роки тому

      Glad it helped!
      For better experience, visit nados.io, where you will get well curated content and career opportunities.

  • @aakash1763
    @aakash1763 3 роки тому +2

    Parnaam🙏🏻

  • @ankitagarwal4914
    @ankitagarwal4914 2 роки тому +2

    Thank you Mam(Channel is getting popular in California)

  • @subhadeepghosh2813
    @subhadeepghosh2813 3 роки тому

    what a explaination. maza*💯 ho gaya.

  • @LegitGamer2345
    @LegitGamer2345 3 роки тому +2

    nice explanation maam!!

    • @freshcontent3729
      @freshcontent3729 3 роки тому

      What is the tiime compileixty of the solution in this video ?

    • @LegitGamer2345
      @LegitGamer2345 3 роки тому

      @@freshcontent3729 logn

    • @LegitGamer2345
      @LegitGamer2345 3 роки тому

      @@freshcontent3729 where n is the number of elements

  • @FinanceMode14
    @FinanceMode14 2 роки тому

    THANK U SO MUCH

  • @girikgarg8
    @girikgarg8 Рік тому

    Done!

  • @letsdoeverythinginoneweek9398
    @letsdoeverythinginoneweek9398 3 роки тому

    nice explanation

  • @56_shivanshrahangdale10
    @56_shivanshrahangdale10 2 роки тому +1

    clear.

    • @Pepcoding
      @Pepcoding  2 роки тому

      Keep learning.
      And for better experience, visit nados.io, where you will get well curated content and career opportunities.

  • @freshcontent3729
    @freshcontent3729 3 роки тому

    What is the tiime compileixty of the solution in this video ?

  • @angadrajsingh4311
    @angadrajsingh4311 3 роки тому

    op explanation ma'am

  • @siddhantgoyal5103
    @siddhantgoyal5103 2 роки тому

    how to code the O(n) approach pls tell..

  • @hoordealer
    @hoordealer 7 місяців тому

    🥰🥰🥰🥰🥰🥰

  • @girikgarg8
    @girikgarg8 Рік тому

    If I used low as 1 and high as n-2 initially, it gave me wrong answer but if I use low=0 and high=n-1, it gives ne right answer
    Any explanation why so?

  • @chandansahu7887
    @chandansahu7887 3 роки тому

    great explanation but why its not working on leet

    • @Pepcoding
      @Pepcoding  3 роки тому

      We are glad that you love our explanation.
      For better experience visit- nados.pepcoding.com
      Don't forget to follow us on Instagram
      instagram.com/pepcoding/

    • @aniketkhajanchi260
      @aniketkhajanchi260 2 роки тому

      after while loop return nums[lower bound] not -1.

  • @ankittripathi1456
    @ankittripathi1456 3 роки тому +1

    Just take xor of all the elements

    • @manishapawar3471
      @manishapawar3471 3 роки тому

      We have to do it in O(logn)

    • @ankittripathi1456
      @ankittripathi1456 3 роки тому +1

      @@manishapawar3471 Sorry I didn't check the constrains.Binary search would work in this case.