Arrays in C (Solved Problem 2)

Поделиться
HTML-код
  • Опубликовано: 26 янв 2025

Комментарии • 212

  • @creatorsayanb
    @creatorsayanb 4 года назад +50

    You are great Sir. I follow the lectures of you. That are very easy after watching. Thanks a lot Sir. A big salute to you.

  • @vijaysinghchauhan7079
    @vijaysinghchauhan7079 5 лет назад +42

    hey,neso academy team can you plss.. upload videos on the array operations such as : insertion,deletion,search etc.

  • @payalsingh4210
    @payalsingh4210 Год назад +3

    The quality of information and knowledge you providing us is far better then any other famous utube coding channels like apni kaksha and all🌻hat's off to you

  • @tayyab.sheikh
    @tayyab.sheikh Год назад +4

    I'm amazed to see such an intuitive explanation!!!

  • @nik-ys8ki
    @nik-ys8ki 4 года назад +6

    interesting solution what i did was lengthy perhaps, but this is short and more logical way of doing things. instead of checking on digit by digit you solve the problem in nice and smooth manner

  • @lalit2926
    @lalit2926 4 года назад +3

    I have made that program but using another logic. But sir your logic is comparatively more short and easier..... 👍👍👍

  • @kayraalpceylan1775
    @kayraalpceylan1775 3 года назад +18

    what if i enter number "012340", after dividing the first 2 digit which is '01' to 10 it'll give 0 and hence it wouldn't enter while loop and print out "No" so in addition you should also check if it's first is "0" or not.

    • @Doraemon-cq8jh
      @Doraemon-cq8jh Год назад

      >= hona chaiye tha

    • @punith3969
      @punith3969 Год назад +3

      If u do so, 0 preceding actual number is converted to octal equivalent in c and it proceeds

    • @pk-uk5lc
      @pk-uk5lc Год назад

      ​@@Doraemon-cq8jhinfinite loop ho jaayega

    • @aayushidesai2813
      @aayushidesai2813 4 месяца назад

      0 is quotient and we need the remainder which we get 1

  • @vijayalakshmiv1720
    @vijayalakshmiv1720 4 года назад +5

    I am becoming fan of neso academy your lectures were awesome

  • @amitbanger635
    @amitbanger635 5 лет назад +34

    wow sir just wow

  • @krishsharma162
    @krishsharma162 3 года назад +2

    I want to say, this is the best content

  • @kanhaiyasuryawanshi3677
    @kanhaiyasuryawanshi3677 2 года назад +2

    the way you explain the things, it's just excellent.

  • @javancheongyujing2531
    @javancheongyujing2531 Год назад +1

    I got another idea using 2 array of string character. Then compare using nested loop.
    A1 vs B1, A1 vs B2..
    A2 vs B1, A2 vs B2..

    • @payalsingh4210
      @payalsingh4210 Год назад

      But woo ise bada ho jaye ga..and time me bhi difference aye ga....phele mene bhi wahi socha tha and then I realise his method is more accurate and fast

  • @achugh52
    @achugh52 4 месяца назад

    this is an innovative way of doing it . generally people apply nested loops for solving

  • @nskchaitanya2671
    @nskchaitanya2671 2 года назад +1

    great logic ,when i tried on my own it took 3 for loops,but with this one while loop is enough

  • @ashanthilochana4339
    @ashanthilochana4339 2 года назад +5

    You can avoid the part 3
    while (num>0){
    N = num % 10;

    if (arr[N] == 1){
    printf("Yes!");
    }

    arr[N] = 1;
    num = num / 10;
    }
    like this. Thank you for your video series. I learned lot of things ❤❤

    • @dipeshranadipeshrana881
      @dipeshranadipeshrana881 2 года назад +1

      Yes but it is for user satisfaction. That according to his/her input program displays correct information

  • @sreemoyeepradhan7707
    @sreemoyeepradhan7707 2 года назад +3

    Your videos are mesmerizing sir ! Thank you so much for uploading these....🤗

  • @onaspnet
    @onaspnet 4 года назад +1

    function hasDuplicates(num) {
    var digits = [];
    while(num > 0) {
    digits.push(num % 10);
    num = Math.floor(num / 10);
    }
    digits.sort();
    for(var i = 0; i < digits.length - 1; i++) {
    if(digits[i] == digits[i+1])
    return true;
    }
    return false;
    }

  • @abderrahimbenmhand2129
    @abderrahimbenmhand2129 4 года назад +2

    The best Teacher, I learn a lot from you

  • @imcoder2250
    @imcoder2250 3 года назад +1

    you are doing great job sir.......thankyou sir....the way you teach is fabulus......thankyou so much sir

  • @user-pj8qg
    @user-pj8qg 6 лет назад +4

    Can you make more videos on array and string

  • @AdarshKumar-vt7wc
    @AdarshKumar-vt7wc 2 года назад +1

    sir please try to use for or do while loop cuz while loop is kinda useless and only takes our time to learn . practically for loop +if else statement could act as a while loop.

  • @sourav.singh29
    @sourav.singh29 4 года назад +4

    Please make a playlist on algorithms....nd try to cover all topics with prerequisites

  • @cozy_vib
    @cozy_vib 11 месяцев назад

    Its amazing to learn ,such a good explaination,thanks a lot.

  • @MKSundaram
    @MKSundaram 4 года назад +3

    Do you have any video explaining a program to check whether any alpahbets is repeated? By using the same formula, I mean without using for loops. Thanks

  • @universalstarcpu9522
    @universalstarcpu9522 3 года назад +10

    Can anyone tell
    1)the prgrm to know what are the digits that are repeated in the given number?
    2)the prgrm to know which digit repeated and how many times it is repeated in the given number?

    • @mdzaid3880
      @mdzaid3880 3 года назад

      #include
      int main()
      {
      int seen[10] = {0}, rec[10] = {0};
      int N, rem;
      printf("\tenter the number : ");
      scanf("%d", &N);
      while (N > 0)
      {
      rem = N % 10;
      if (seen[rem] == 1)
      {
      rec[rem] = rec[rem] + 1;
      }
      else
      {
      seen[rem] = 1;
      }
      N = N / 10;
      }
      for (int i = 0; i < 10; i++)
      {
      if (rec[i] > 0)
      {
      printf("
      \t%d is repeated %d times.", i, rec[i] + 1);
      }
      }
      return 0;
      }

  • @Hiyori___
    @Hiyori___ 4 года назад +5

    here's the code to print how many times a digit is repeated, hope it helps.
    #include
    int main()
    {
    //create array full of zeros
    int seen[10]={0}, i;
    int N;
    printf("pls insert a number
    ");
    scanf("%d", &N);
    int rem;
    //while loop to count how many times a number
    while (N>0)
    {
    rem=N%10;
    seen[rem]=(seen[rem]+1);
    N=N/10;
    }
    for (i=0; i

  • @e-ponnobangladesh5387
    @e-ponnobangladesh5387 5 лет назад +22

    we need data structure and algorithm from you.

    • @Randibaaj_sala
      @Randibaaj_sala 4 года назад +4

      kar diya hai lavde

    • @adithya3890
      @adithya3890 4 года назад +1

      @@Randibaaj_sala swag😂😂

    • @Godl_Damon
      @Godl_Damon 4 года назад +5

      hi guys are you alive in this covid period 😂😂🤣😂😂😅☺😅🤣😂🤣😅🤣😂😅🤣😂🤣😅

    • @sambhavsrivastava6015
      @sambhavsrivastava6015 3 года назад

      @@adithya3890 tmhre amma ki jai.

  • @TYGAMatt
    @TYGAMatt 4 года назад +2

    Great teacher

  • @ismaail8620
    @ismaail8620 5 месяцев назад +1

    if you give the n = 00;
    the output gonna be no and thats incorrect

  • @rohitupasani3239
    @rohitupasani3239 9 месяцев назад

    I have a question: what if we change the size of the array rather than 10 which you have declared in the video what will happen if we change it to any other size , will it give the wrong output or will it work fine

  • @MolletiSaiRevanth
    @MolletiSaiRevanth 2 месяца назад

    Your teaching like god level

  • @VashishtArora
    @VashishtArora 2 года назад +1

    Instead of assigning the value 1 shouldn't we assign the remainder in the array and break if the value is not equal to 0?

  • @alkapathak59
    @alkapathak59 6 лет назад +2

    thank you for detailed explanation.

  • @smartworld3686
    @smartworld3686 Год назад +1

    While( n>0)
    Rem=n%10
    If( rem==rem)
    Print("number is twice display")
    N=n/10
    }

  • @SportsGyan_
    @SportsGyan_ 4 года назад +1

    What will be the output if value is 50
    At last after if condition value of N =5 , which is greater than 0 so output is yes..but there is no repetition

    • @juanmoscoso0
      @juanmoscoso0 4 года назад

      it will divide 5 by 10 and give 0

  • @shreyasingh222
    @shreyasingh222 3 года назад +1

    Thanks Sir for this video... it's really helpful...

  • @ozgeylmaz8685
    @ozgeylmaz8685 Год назад

    very good example thank you for the videos

  • @NaveenKumar-li7tl
    @NaveenKumar-li7tl 3 года назад +1

    excellent teaching Thank for helping sir!

  • @AmanaFathima-qt9ud
    @AmanaFathima-qt9ud 9 месяцев назад

    please upload more questions its highly helpful

    • @kumarshwetank1256
      @kumarshwetank1256 6 месяцев назад

      Pw c programming array waha vi kraye h bhot question

  • @entertainmenttv1084
    @entertainmenttv1084 Месяц назад +1

    but sir only yes will be coded after dialing any number repeated or nonrepeated 😢😢

  • @A-M-A-N-G
    @A-M-A-N-G 4 года назад +6

    What if when number is repeated more than once ...how we can calculate its length

  • @ilyasmouhtadi198
    @ilyasmouhtadi198 3 месяца назад

    great job

  • @sandysandy3287
    @sandysandy3287 6 лет назад +3

    Sir ......if a=10;
    x=a++;
    What is the value of x here ??

    • @alkapathak59
      @alkapathak59 6 лет назад +4

      since it is a post fix expression ,value of x =10, as the value is assigned before increment is done on ' a '.

    • @sandysandy3287
      @sandysandy3287 6 лет назад +1

      @@alkapathak59 thanks

    • @mhmdfathi6780
      @mhmdfathi6780 5 лет назад

      a=11

    • @tchgs11zdok15
      @tchgs11zdok15 5 лет назад +1

      @@mhmdfathi6780 a yeah, but x=10

    • @mdzaid3880
      @mdzaid3880 3 года назад +1

      Bhai , a=10;
      In case of x=a++;
      x=10 but a =11. cause of post increment of value of a.
      But for x=++a;
      we get, x=11 and a = 11.cause of pre increment of value of a.

  • @ssr6948
    @ssr6948 2 года назад

    beautiful solution sir.

  • @biswarupsou5144
    @biswarupsou5144 6 месяцев назад +2

    If the number input is 1000
    It won't be >0

  • @muhammadsharif9192
    @muhammadsharif9192 2 года назад

    amazing one sir

  • @chacho2340
    @chacho2340 2 года назад

    great idea sir

  • @souvikpaul7250
    @souvikpaul7250 2 года назад +1

    What if I enter '1070'? In this case 0 is repeated, but if 0 is the reminder, then it won't iterate... It should exit the loop, but it does complete it's task, why?

    • @priyalamba5288
      @priyalamba5288 2 года назад +1

      it will iterate for sure because we are checking whether 1 is stored in arr[rem=0] or not...so there is no effect of rem being 0 in the first case but when the rem again comes out to be zero..it will come out of the loop as the value at arr[0] is already equal to 1 because of the first rem.
      that's why this code is able to check all the positive integera.

  • @Aabara_ka_dabara
    @Aabara_ka_dabara Год назад

    new approach to this Question..😄

  • @HelloWorld40408
    @HelloWorld40408 2 года назад

    Thank You Sir

  • @varshaaggarwal9040
    @varshaaggarwal9040 5 лет назад +2

    Sir i am not able to design algorithms of programs, like the program explained in this video. What should I do?

    • @priyanshtiwari8317
      @priyanshtiwari8317 4 года назад +2

      refer geeksforgeeks

    • @spoofer9113
      @spoofer9113 3 года назад

      yeah even I did made a program to get this output but my code and way of thinking was not like this. I don't know what to do

  • @accessdenied9393
    @accessdenied9393 3 года назад

    Another method using bruteforce instead of math:
    int main(void)
    {
    int array[] = {10, 20, 30, 40, 10, 10, 70, 80, 90};
    int count = sizeof(array) / sizeof(array[0]);
    for (int i = 0; i < count-1; i++)
    {
    for (int j = i+1; j < count; j++)
    {
    if (array[i] == array[j])
    {
    printf("%d
    ",array[i]);
    }
    }
    }
    return 0;
    }
    Say you've got 9 items in an array and want to compare each pair of items: start with the first one, and compare it to each of the other 8 items in the array. That's 8 comparisons so far. Then move to the second one. No need to compare it to the first item, you already did that, so compare to each of the remaining 7 items. Repeat this process and you'll end up with 8+7+6+5+4+3+2+1=36 comparisons. And that's just what the code above does

    • @adamlupu5885
      @adamlupu5885 2 года назад

      This is what came to me at first too..but the time complexity is way worse.

  • @marbles5590
    @marbles5590 2 года назад

    not applicable if we enter such number like 0091 for instance. Answer would be "No" despite the repeating zeroes

  • @mayurborse6096
    @mayurborse6096 4 года назад +2

    I also thought 💭 , if given no is like 35385 or any other then what logic we have to add ? Many of your subscribers also want it's solutions as you take attention to comments . So I kindly request you to give ethier a small reply from you or a presentation .

    • @vivektripathi9863
      @vivektripathi9863 4 года назад +1

      then applay for loop in for loop with the same logic use nested if situation you will get the output how many time a digit has been repeated

    • @vivektripathi9863
      @vivektripathi9863 4 года назад

      #include
      int main()
      {
      int num,rem,i,j,k,num2,count=0;
      printf("enter the number :");
      scanf("%d",&num);
      printf("enter the number which you want to check in given digit");
      scanf("%d",&num2);
      while(num!=0)
      {
      rem=num%10; //it will give us remender means last digit of a line
      if(num2==rem)
      count++;
      num=num/10;
      }
      printf("_______________
      ");
      printf("here %d occure in %d time in digit",num2,count);
      return 0;
      }

    • @pankajkesharwani8088
      @pankajkesharwani8088 2 года назад

      @@vivektripathi9863 how bro i am not getting that

    • @vivektripathi9863
      @vivektripathi9863 2 года назад

      @@pankajkesharwani8088 what error you are facing bro ?

  • @lokeshjoshi5672
    @lokeshjoshi5672 Год назад

    //An alternate method
    #include
    int main()
    {
    int a[5],i,j,count=0;
    printf("Enter 5 numbers");
    for(i=0;i

  • @jaideepsh
    @jaideepsh 4 года назад +1

    wow what a solution sir ji

  • @praveen9202
    @praveen9202 6 лет назад +1

    Sir please complete power systems please .....i eagerly waiting to have grip on it

  • @suhanagupta9624
    @suhanagupta9624 3 года назад

    Thank you sir .🙂

  • @varunvishal
    @varunvishal Год назад

    When I am using a 11 digit number such as 12345678901 even after using unsigned long long int data type it is messing up the result. What can be the reason for this?

  • @mauryaashish1865
    @mauryaashish1865 4 года назад

    You are best sir! 😊

  • @chakradharthota1100
    @chakradharthota1100 3 года назад

    Anybody tell me how the rem is 2 at 4:56

  • @jameswen-o3v
    @jameswen-o3v Год назад +1

    Please help me,my English is bad,where does the two at 4:41 come from? Can anyone help me, I know this question 😂is kind of stupid 😢

    • @jameswen-o3v
      @jameswen-o3v Год назад

      All right, I‘m good now,thanks

  • @nabeelali2178
    @nabeelali2178 5 лет назад

    In may task having the same problem but i must count every number and print it and how many times it's been repeated

  • @tanuja2853
    @tanuja2853 5 лет назад

    in previous video you said that ;;;;;if we take a[10] it will take only 10 numbers ::::but in the above video i took seen[4] but
    entered value is 6 digit program executes and why should we tak that seen[10]={0}

  • @qandos-nour
    @qandos-nour 4 года назад

    very nice ans smart program thanks

  • @sarapreethi7200
    @sarapreethi7200 5 лет назад

    Why we using the condition in if statement as n>0

  • @huychu01
    @huychu01 3 года назад

    In line 7, if i write : scanf("%d ", &N); , then i must type 2 times the number, the program will run. I don't know why ?

  • @yahia1355
    @yahia1355 4 года назад +1

    this is very smart!

  • @AshishKhetwal
    @AshishKhetwal Месяц назад

    amazing!

  • @aakankshagarg8423
    @aakankshagarg8423 6 лет назад +1

    Really gud video.... Keep doing this..

  • @Atrainn234
    @Atrainn234 2 года назад

    Thank you!

  • @annamalai31rv99
    @annamalai31rv99 6 лет назад +1

    Thank you neso

  • @anupamsandeep5940
    @anupamsandeep5940 3 года назад

    Good Logic sir

  • @neemakalpure
    @neemakalpure 3 года назад

    Best explaination ever.

  • @Rra132
    @Rra132 11 месяцев назад

    How to know when to use loops 😢. And when to use n%10 like that thing

  • @sushantxtj3727
    @sushantxtj3727 2 года назад

    Thanks

  • @Meander_Man
    @Meander_Man 4 года назад +1

    Sir if entered digit is 00 this will not work

  • @hil449
    @hil449 3 года назад

    aww, nice solution. Im so stupid, I straight up read the number as a string of characters and looped through the string checking if we have repeated chars lmao

  • @mayankshigaonker7725
    @mayankshigaonker7725 4 года назад +5

    Hello Sir, I solved this problem before watching your solution and this is what I came up with.
    #include
    int main() {
    int num, nums[5], dup = 0;
    //Input stage
    printf("Please enter a five digit number: ");
    scanf("%d", &num);
    // Processing stage
    int temp = num;
    //Transferring each digit of num to the array nums
    for(int counter = 0; counter < 5; ++counter) {
    nums[counter] = temp % 10;
    temp /= 10;
    }
    //The algorithm
    for(int counter = 0; counter < 5; ++counter){
    for(int counter1 = (counter + 1); counter1 < (5 - counter); ++counter1)
    if(nums[counter] == nums[counter1]){
    dup = 1;
    break;
    }
    if(dup)
    break;
    }
    //Output stage
    if(dup)
    printf("%d has a repeated number", num);
    else
    printf("%d does not have a reapeated number in it", num);
    return 0;
    }
    BTW I your program is better than myn because of obvious reasons:)

  • @user_at180
    @user_at180 5 лет назад +1

    sir,this program doesnt give the proper output,if n=non repeated digits,wht op im getting is yes only

    • @yashwanthrajlakumarapu9738
      @yashwanthrajlakumarapu9738 5 лет назад

      me 2

    • @vivektripathi9863
      @vivektripathi9863 4 года назад

      @@yashwanthrajlakumarapu9738 #include
      int main()
      {
      int num,rem,i,j,k,num2,count=0;
      printf("enter the number :");
      scanf("%d",&num);
      printf("enter the number which you want to check in given digit");
      scanf("%d",&num2);
      while(num!=0)
      {
      rem=num%10; //it will give us remender means last digit of a line
      if(num2==rem)
      count++;
      num=num/10;
      }
      printf("_______________
      ");
      printf("here %d occure in %d time in digit",num2,count);
      return 0;
      }

  • @dnegi4691
    @dnegi4691 3 года назад

    Sir how can it be compiler u didnt declare rem

  • @andistheinforitbutso7513
    @andistheinforitbutso7513 3 года назад +2

    We can manipulate this code and can find out:-
    1. Which number is repeated how many times?
    2. We can even used it for alphabets.
    3. We can build a program to find out repeated alphanumeric names.

  • @topgemaldo6964
    @topgemaldo6964 5 лет назад

    Excellent 👍👍👍👍

  • @captainjow1518
    @captainjow1518 5 лет назад +1

    I also solved it but mine is kinda weak since I needed to know how many digits is the input and then take it one by one and do a comparison but yours is much more convenient and smarter , I feel dumb

    • @vivektripathi9863
      @vivektripathi9863 4 года назад +1

      #include
      int main()
      {
      int num,rem,i,j,k,num2,count=0;
      printf("enter the number :");
      scanf("%d",&num);
      printf("enter the number which you want to check in given digit");
      scanf("%d",&num2);
      while(num!=0)
      {
      rem=num%10; //it will give us remender means last digit of a line
      if(num2==rem)
      count++;
      num=num/10;
      }
      printf("_______________
      ");
      printf("here %d occure in %d time in digit",num2,count);
      return 0;
      }

  • @nabiurrahman6637
    @nabiurrahman6637 3 года назад

    How do you explain that below program?
    #include
    #include
    int main(){
    char s[1000];
    int x,i,count[10]={0},a=0;
    gets(s);
    for(i=0;i

  • @dachinoloko7624
    @dachinoloko7624 3 года назад

    At first I tried it didn't work and I modified the part 3 section and after that still not working, I switched it back to the original as below:
    If(N>0)
    printf("Yes");
    else
    printf("No");
    it works.
    but then I thought of another method like this:
    if (N==0)
    puts("No");
    else
    puts("Yes");
    which is much simpler and it works too.
    The reason why if u key in 000 or 001 and so anything with 0 in the beginning followed by a value, compiler will ignore the zero and read it as 1 in case of 01, 001, try putting 0011, and it will be understood as 11 and the output will be "YES MACHA!" this is a repeated number

    • @asharya5311
      @asharya5311 3 года назад

      Yes correct!
      Even I experienced it!
      int main()
      {
      int num,rem;
      int a[10]= {0};
      int count = 0;
      char c;


      printf("Enter the number: ");
      scanf("%d",&num);
      for( num; num > 0; num/=10)
      {
      rem = num%10;
      if(a[rem] == 0)
      a[rem]++;
      else
      a[rem]++;
      }
      for(int i = 0; i=2)
      { printf("%d is repeated %d times
      ", i,a[i]);
      count++;}
      }
      if(count == 0)
      printf("NO digits are repeated
      ");
      return 0;
      }
      I wrote the above code to check which digit is repeated, for numbers like 000011 it does take into consideration the 0 digit!
      Do you know the solution?

  • @rishabhkalyani604
    @rishabhkalyani604 5 лет назад

    what's happen if i input the number 1206?
    you take the seen array in which all the entries are zero, so in the second comparison of digits the loop will break but zero is not repeating in number.
    then what should we do?

  • @learnwiththapa2886
    @learnwiththapa2886 3 года назад

    Sir, in Part 2 explaination, 2%10 will give 0 as a remainder which will be returned to rem variable. or am I wrong, please help me with this.

    • @ttobg
      @ttobg 3 года назад +1

      2 divided by 10 would be 0, and you are left with 2

    • @learnwiththapa2886
      @learnwiththapa2886 3 года назад

      @@ttobg % (modulus) operator returned the remainder value to the variable means I am confused if it is so, variable rem will get value 0.. 2 here is dividend not a remainder..🤔

    • @agambhatia6496
      @agambhatia6496 3 года назад

      @@learnwiththapa2886 remember modulus operator gives the last digit of a number and if the number is itself a single digit then it will return that particular single digit.

  • @nazmapervin7198
    @nazmapervin7198 4 года назад +3

    Thank you sir it was a great video.But when i enter any large number in my program, then it does not work properly. I entered a number which has more than 10 digits. Is it because of that?

    • @DUALE0
      @DUALE0 4 года назад +6

      int has a specific size of byte upto which it can store a value. For long digit numbers, try long int

  • @naurinsultana1166
    @naurinsultana1166 4 года назад

    Can we check which digits are repeated and how many times?

    • @mdzaid3880
      @mdzaid3880 3 года назад

      #include
      int main()
      {
      int seen[10] = {0}, rec[10] = {0};
      int N, rem;
      printf("\tenter the number : ");
      scanf("%d", &N);
      while (N > 0)
      {
      rem = N % 10;
      if (seen[rem] == 1)
      {
      rec[rem] = rec[rem] + 1;
      }
      else
      {
      seen[rem] = 1;
      }
      N = N / 10;
      }
      for (int i = 0; i < 10; i++)
      {
      if (rec[i] > 0)
      {
      printf("
      \t%d is repeated %d times.", i, rec[i] + 1);
      }
      }
      return 0;
      }

  • @rajan9064
    @rajan9064 4 года назад

    thank you so much sir

  • @ranvijayabharadwaj7623
    @ranvijayabharadwaj7623 4 года назад

    Sir if we put there the no 1204 then sir it will break because of 0 then sir this is wrong

  • @rajlakhanpal
    @rajlakhanpal 2 года назад

    With all due respect to math wizards out there, how is 2%10 has a remainder 2? (video time 4:55)

  • @chinnanachiappanrm2527
    @chinnanachiappanrm2527 Год назад

    sir will this code work for 9006

  • @saikrishna9094
    @saikrishna9094 6 лет назад

    Sir make network theory videos

  • @Animehindiduniya4303
    @Animehindiduniya4303 28 дней назад

    when we enter 00 then it will show no....and that is wrong

  • @psykjavier
    @psykjavier 4 года назад

    in this video we used the bloom filter and a kind of hash table isn't ?

  • @BruteForceHS
    @BruteForceHS 3 года назад

    what is the level of this problem?

  • @thejareddy4380
    @thejareddy4380 6 лет назад

    Sir neso acadamy will upload network theory classes or not sir please reply sir
    We are prolonged waiting for NT classes

  • @ravirajsinghsisodiya6120
    @ravirajsinghsisodiya6120 Год назад

    Thank0--you