I gave 127 interviews. Top 5 Algorithms they asked me.

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

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

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

    Try my free email crash course to crush technical interviews: instabyte.io/

  • @ThourCS2
    @ThourCS2 ปีที่แล้ว +514

    1. Top-k Largest Elements
    2. Sliding Window
    3. Backtracking
    4. Dynamic Programming
    5. DFS and BFS

  • @studytable2060
    @studytable2060 ปีที่แล้ว +100

    1. Top-k Largest Elements(from array)
    2. Sliding Window(longest substring without repeating characters)
    3. Backtracking(combination/target sum, word ladder, permutation, sudoku solver)
    4. Dynamic Programming(combination/target sum)
    5. DFS(implemented using stack(LIFO)) and BFS(implemented using queue(FIFO))
    ex-Dijkstra's Algorithm, Topological sort

  • @nassir2154
    @nassir2154 11 หลายเดือนก่อน +7

    🎯 Key Takeaways for quick navigation:
    00:00 📚 *Introduction to Common Algorithms in Coding Interviews*
    - Overview of frequently asked algorithms in tech company interviews.
    - Emphasis on the 80-20 rule in algorithm knowledge for interviews.
    00:30 💡 *"Top k Elements" Algorithm*
    - Explanation of the "top k elements" algorithm and its application.
    - Use of heap data structure for efficiency in finding k largest elements.
    01:52 🖥️ *"Sliding Window" Algorithm*
    - Introduction to the "Sliding Window" algorithm for various problems.
    - Example using Largest Substring without repeating characters.
    03:17 🔙 *Backtracking Method*
    - Concept of backtracking explored with the Combination Sum problem.
    - Use of recursion in backtracking algorithms.
    05:07 🧮 *Dynamic Programming Approach*
    - Differences between backtracking and dynamic programming.
    - Application of dynamic programming in solving the Combination Sum problem.
    07:02 🌐 *Graph Traversal: BFS and DFS*
    - Explanation of Breadth First Search (BFS) and Depth First Search (DFS).
    - Comparison of BFS and DFS in graph traversal, and their respective data structures.
    Made with HARPA AI

  • @AdnanDev-su5no
    @AdnanDev-su5no ปีที่แล้ว +9

    I was taught all these in university, but never told how, why or where they are used. I have started to use these in my personal projects after watching your video. Thanks a bunch for spreading this valuable knowledge. And of course I do plan to use this info for coding interviews in the future apart from my projects 😅

    • @paultvshow
      @paultvshow ปีที่แล้ว

      Hey, Have you landed a job yet? What is your primary language?

    • @AdarshGupta-hc3qv
      @AdarshGupta-hc3qv 10 หลายเดือนก่อน

      bro send me money too i have pay for my college fees ( small help will be appreciated)

  • @jojobabu5718
    @jojobabu5718 ปีที่แล้ว +474

    We want a video on top 5 most asked data structures

  • @aufkeinsten7883
    @aufkeinsten7883 ปีที่แล้ว +10

    Jesus christ you are an absolute beast at this, best educational content I've seen I think! Concise, informative, simple but not superficial.. Thank you so much!

  • @iAPX432
    @iAPX432 ปีที่แล้ว +7

    I like how you explain simply with a very calm voice things that might seems complex at first!
    Great work!

  • @davit_code8929
    @davit_code8929 ปีที่แล้ว +12

    If you don't need to return the elements in order, Top k elements can be optimised even further with quickselect to Time complexity of O(n + k) => O(n) AND bringing down the space complexity to O(1) too.
    Quickselect has a worse time complexity of O(n^2), but picking the pivot randomly each time gives O(n). The chances of always picking a bad pivot that would make it O(n^2) with a random pivot is so small, that papers assume it never happens.

    • @tho_norlha
      @tho_norlha ปีที่แล้ว

      Just a question:
      You can do one for loop to get the largest let -> n
      Another one to remove that won’t
      -> n
      Repeat it 2 times so we get too 3 elts
      ->O(5n) = O(n)
      Am I correct ?
      If it’s too 3 elts, but I see that a heap might be better if we want the top k elts and if K is very large

  • @kkcui
    @kkcui ปีที่แล้ว +61

    I like how you explain recursion - I always draw a stack and dive into each step but that's just cost a lot of time. And 127 interviews is just impressive! Keep up the good work power couple! 🙌💪

    • @sahilandsarra
      @sahilandsarra  ปีที่แล้ว +5

      Thanks Kexin! Love your videos 🫶

    • @ohazimihevanessa3972
      @ohazimihevanessa3972 ปีที่แล้ว

      @@sahilandsarra Thanks for your videos, i'm learning python thanks to you, where can learn GoLang, datacamp isnt teaching this programming language

  • @alicivrilify
    @alicivrilify ปีที่แล้ว +13

    This is great work. Please continue giving info about interviews, so that I can train my students better.

  • @soicooc3500
    @soicooc3500 8 หลายเดือนก่อน

    1. Top-k Largest Elements ( 0:46 - 1:00)
    2. Sliding Window (1:01 - 3:30)
    3. Backtracking ( 3:30 - 5:03)
    4. Dynamic Programming ( 5:06 - 7:00)
    5. DFS and BFS ( 7:02 - 7:54)

  • @dankiy3679
    @dankiy3679 ปีที่แล้ว +20

    I would suggest using Quick Select to solve problems where you have to return top K elements, since it has O(n) average time complexity

    • @sahilandsarra
      @sahilandsarra  ปีที่แล้ว +5

      Thanks for sharing 👍

    • @moneymaker7307
      @moneymaker7307 ปีที่แล้ว

      U can mention quick select but I won’t try to code it up in interviews

    • @anon1963
      @anon1963 ปีที่แล้ว

      @@moneymaker7307 why?

    • @dapygor9339
      @dapygor9339 6 หลายเดือนก่อน

      ​@@anon1963 it's kind of hard

  • @sebastiantu6212
    @sebastiantu6212 ปีที่แล้ว +5

    I never really understood backtracking until I realized that it should be called quit when there’s no point going on

  • @divakarsaragadam8420
    @divakarsaragadam8420 ปีที่แล้ว +5

    Thanks for sharing your knowledge with out any cost

    • @sahilandsarra
      @sahilandsarra  ปีที่แล้ว +1

      Thanks for watching.

    • @abbylynn8872
      @abbylynn8872 ปีที่แล้ว

      Right... I'm so grateful for the knowledge sharing 💕

  • @RomanKopystyrynskyi
    @RomanKopystyrynskyi ปีที่แล้ว +3

    For k largest/smallest elements we can do heapify which works in O(n) and then take k element in constant time.
    Second option is counting sort which works in O(n +k)

    • @JD797
      @JD797 ปีที่แล้ว +4

      Even with heapify in linear time, taking k elements is still klogk since when the top element is removed, the heap moves the last element to the top to replace it and sifts down, which is log k operation

    • @Omar_Al_Seddik
      @Omar_Al_Seddik ปีที่แล้ว +1

      We can solve it in O(n) time using bucket sort.

  • @zedddoctor
    @zedddoctor ปีที่แล้ว +2

    Your videos are so helpful, I inevitably end up saving them in a playlist so I can refer to them later whenever I need guidance. Thank you so much.

  • @piyushmourya3183
    @piyushmourya3183 ปีที่แล้ว +5

    His calmness is scaring.

  • @richied90
    @richied90 6 หลายเดือนก่อน

    Nice and simple explanations! Thanks for uploading this

  • @stith_pragya
    @stith_pragya 7 หลายเดือนก่อน +1

    Thank You So Much for this wonderful video..............🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻

  • @elavarasan289
    @elavarasan289 ปีที่แล้ว +3

    Whenever I am getting demotivated u just create a video and it makes me think dsa is easy. I dont know whether your calming voice or the way you explain. Thanks a lot .

    • @sahilandsarra
      @sahilandsarra  ปีที่แล้ว

      Thanks 🙏 👍

    • @TuringTested01
      @TuringTested01 ปีที่แล้ว

      i think its his gay voice he got in iit delhi which makes him very calm

  • @muneebzubair8443
    @muneebzubair8443 ปีที่แล้ว +1

    Bonus Algorithms at the end of video:
    6. Topological Sort
    7. Dijkstra's Algorithm
    0. A*, Bellman Fords, Floyd Warshall

  • @wadigzonDiazwong
    @wadigzonDiazwong 8 หลายเดือนก่อน

    Thanks for sharing this. I think a better title would be "Top 5 Algorithm Patterns they asked me" other than that, great work!

  • @karanbenz
    @karanbenz ปีที่แล้ว +11

    Sahil, amazing Video. Loved the way you explained the problem with an animation. Highly recommend you launching a course in DSA using Python with similar explanation 🙏

  • @raidenshogun978
    @raidenshogun978 ปีที่แล้ว +6

    It would be awesome if you make a series explaining these algorithms

  • @dakuta
    @dakuta 10 หลายเดือนก่อน

    IIt's impressive to hear about your experience with 127 interviews and the algorithms they focused on. However, I'm curious about the circumstances that led to such a high number of interviews. Do you think there are specific factors or challenges that contributed to this? It would be really insightful to hear your thoughts on how to efficiently navigate the job market, especially for those who might find themselves in a similar situation.

  • @manishv3992
    @manishv3992 ปีที่แล้ว +7

    Bro what an animation, how did you learn this top notch editing bro ❤

  • @_Aditya_Kumar_Raj
    @_Aditya_Kumar_Raj ปีที่แล้ว

    i love your calmness while explaining

  • @CRBarchager
    @CRBarchager ปีที่แล้ว +1

    Very good explication. There are algorithms here I've never heard of or for that matter never had any use for in my developer career but it's nice to broading your knowledge of things. Thank you for sharing.

  • @alviahmed7388
    @alviahmed7388 ปีที่แล้ว +6

    Definitely make a top data structures video sahil! Also love your videos

  • @unity3dconcepts434
    @unity3dconcepts434 ปีที่แล้ว +1

    You are calmer than the buddhist monks. Listening to you is nirvana... 😁🤓🤗 Thanks for sharing your experience 👍👍👍 love and respect

  • @paul_c15
    @paul_c15 ปีที่แล้ว +3

    Please do a video about the top 5 data structures!

  • @lakshyasaharan5348
    @lakshyasaharan5348 ปีที่แล้ว

    The music sound at the end was perfectly placed.

  • @smartbinit2
    @smartbinit2 ปีที่แล้ว

    This guy speaks so politely it just doesn't feel he is speaking and he also must be saving a lot of energy 😂

  • @MaximStarikov
    @MaximStarikov ปีที่แล้ว

    Thanks for the video!

  • @larbesabdellah7079
    @larbesabdellah7079 ปีที่แล้ว +1

    I'm a computer science student, I'm doing cloud computing now, I'm bad at networking and I hate it, but I'm in love with programming, please help me !!! Especially professional persons give me advices, roadmap anything to make me in the right way

  • @elvisgarcia1822
    @elvisgarcia1822 ปีที่แล้ว +1

    Wow, Nice explication even for someone who do not speak english I understand everything, Nice video editing everything was perfect, thanks for sharing your knowledge :)

  • @snipacer
    @snipacer ปีที่แล้ว

    Hi Sahil, I loved your videos❤. Your voice is so dense😊. May God bless you.

  • @vedparkashgaba5478
    @vedparkashgaba5478 ปีที่แล้ว +1

    Nice video content selection is also good

  • @Samandar-dev
    @Samandar-dev ปีที่แล้ว +2

    Sahil, thank you . Please do a video about the top 5 data structures!

  • @skan90
    @skan90 ปีที่แล้ว +1

    0:44, just out of curiosity, what's the name of the serie/movie, please. Also, thank you so much for all the time, effort and quality behind your content, it really helps the brazillian intern making about US$3.34/h in a 30h/week job (Real is not at it's best), going night in and out learning new things and getting better at those I already know, hoping for better days where I will no longer have to tell my 5y daughter that 'today daddy doesn't have cash for sweets'. Love from Brazil. ❤

    • @sahilandsarra
      @sahilandsarra  ปีที่แล้ว +1

      The movie is called: “Everything Everywhere all at once”. From this comment, I can tell that your daughter must be so proud of you. ❤️

    • @skan90
      @skan90 ปีที่แล้ว

      ​@@sahilandsarra Thank you, and thank you so much for the support! Being a single dad is no easy task, and her mom is not that present in her life as she once was, so she really looks at all my efforts day 'n night and shows her pride by trying to copy me, get's one of her story books, sits next to me, opens it half way like a laptop, and stars typing on the page while saying: "Look! I'm working, just like you dad!"
      My 76y old mom also needs my attention, since she has many health problems, and the home office in my actual job position made it possible for me to take care of both my mom and my daughter, so I'm already happy to be a full stack intern (Java/Spring, React/TypeScript) even if payment is not that good at the start.
      Every day is a struggle to even put food on the table, but I'm more than certain that every effort I put on to this, will one day, sooner or latter, payoff and all of that will be just a shadow in the past.
      To end this comment on a positive note, today I've received the new that I'm one of 25 people, in a long process with almost 8k submissions in the first stage of it, for a course in DevOps with a great company called "Nuclea CIP SA". At any moment of the course (btw, the course is 100% that's free of charge), they can hire one of us based on our advances.
      So, crossed fingers. (maybe one day I'll be a Full Cycle Dev, who knows?!)

    • @sahilandsarra
      @sahilandsarra  ปีที่แล้ว

      I’m sure you’ll do great in life. I wish you all the luck 👍

  • @tongobong1
    @tongobong1 ปีที่แล้ว +184

    Asking candidates about algorithms is a bit stupid because knowing algorithms doesn't make you a good programmer. The key to be a good programmer is understanding the concepts like refactoring, design, clean code, objects and interfaces, SOLID principles and unit tests...

    • @Alex-ob7te
      @Alex-ob7te ปีที่แล้ว +16

      😂

    • @Samir-rd8xp
      @Samir-rd8xp ปีที่แล้ว +33

      clean code and solid principles REQUIRES you to know algorithms or else your run time will be horribly slow

    • @tongobong1
      @tongobong1 ปีที่แล้ว +5

      @@Samir-rd8xp knowing many algorithms before you need to use them in your code is against YAGNI principle.

    • @danschey390
      @danschey390 ปีที่แล้ว +14

      Knowing algorithms doesn't make you a good programmer, but the best programmers know a lot of useful algorithms.

    • @tongobong1
      @tongobong1 ปีที่แล้ว +4

      @@danschey390 the best programmers know a lot of useful principles and patterns by heart and not so many useful algorithms beyond the basic algorithms for most common problems.

  • @audox4885
    @audox4885 6 หลายเดือนก่อน +1

    im confused if these are the coding problems or the algorithms, because we use algorithms to solve these that you mentioned right?

  • @BangsarRia
    @BangsarRia ปีที่แล้ว

    "Algorithms + Data Structures = Programs" was a 1976 book by Wirth, the designer of the Pascal programming language. Algorithms were all the rage in computing 50 years ago. Train yards and queuing in the 1960's, sorting, traversal and scheduling in the 1970's for Operations Research, an entire field that shortly disappeared.
    Then the focus turned to symbolic processing and other problems because algorithms were largely solved and available by calling libraries.
    While worthy of study for students, algorithms as questions in interviews for professional jobs shows a complete misunderstanding of solving real world problems and what a healthy code base should look like.

    • @feroast1
      @feroast1 ปีที่แล้ว

      I'm always surprised when an interviewer doesn't follow with questions on how I'd implement in production code since, as you point out, most langauges have optimized solutions for us to leverage. However... DS-Algo challenges are the best way to determine candidate understanding of the computer science behind implementation choices. It's the best way to differentiate real coders from script-kiddies.

    • @Shazam999
      @Shazam999 10 หลายเดือนก่อน +1

      @@feroast1My first developer question is always "has any of your code made into a production environment?" Most people actually answer no. I have no idea what people do all day.

    • @Shazam999
      @Shazam999 10 หลายเดือนก่อน

      Pretty much. No one is writing algorithms by hand. That would be a colossal waste of time. Guess it sorta explains why FAANG employ so many people though.

  • @karanyuvrajsingh4911
    @karanyuvrajsingh4911 ปีที่แล้ว

    Amazing explanations!!

  • @dibyanshudash399
    @dibyanshudash399 7 หลายเดือนก่อน

    Yes, pls make a video on Top 5 Data Structures

  • @anirudhmittal5381
    @anirudhmittal5381 ปีที่แล้ว

    Thank You for doing this. I subscribed to your channel as I love your videos. Can you recommend a best site that is good for learning and practicing these algorithms to pass most coding interview questions. Reply highly appreciated.

  • @andreborgesuhlrich631
    @andreborgesuhlrich631 ปีที่แล้ว

    What tool do you use to display the code in the video? I have a presentation to do and would like to use something similar.

  • @RahulSharma-ht2xz
    @RahulSharma-ht2xz ปีที่แล้ว +1

    yes we want a video on top 5 data structures

  • @iosifcastrucci
    @iosifcastrucci 5 หลายเดือนก่อน

    If someone is starting from 0, what do you recommend they start with? I mean, what is the best learning path?

  • @motivationimpact181
    @motivationimpact181 ปีที่แล้ว +1

    I love your videos each time something new very interesting topics

  • @bigtime9231
    @bigtime9231 ปีที่แล้ว

    Would be great if u upload lectures on dynamic programming! Great content go ahead.

  • @kan15hk
    @kan15hk 11 หลายเดือนก่อน

    Top k-frequent elements with heap is also N * log(N) time complexity.

  • @bhaskarkothala5169
    @bhaskarkothala5169 ปีที่แล้ว +7

    Hey man why don't you start giving tutorials.I believe you can deliver them way better than many people

  • @studiesinformation436
    @studiesinformation436 ปีที่แล้ว +3

    Every of your video is Awesome please do a playlist on DSA
    I will be very thankful for considering of my comments
    Keep it up❤❤❤

  • @TricoliciSerghei
    @TricoliciSerghei ปีที่แล้ว +2

    Would love to see the some data structure videos.

  • @mohanseditz
    @mohanseditz ปีที่แล้ว +1

    I like the way you speak!

  • @ratnadeepsaha7675
    @ratnadeepsaha7675 ปีที่แล้ว

    Please make a video on most commonly used algorithms and data structures with use cases. Include not only 5 but also the other commonly used ones

  • @sangu3939
    @sangu3939 ปีที่แล้ว +1

    Thanks sir make a video on Android app development from java what things we follow and learn for beginning

  • @Mohitsingh-bv1yp
    @Mohitsingh-bv1yp ปีที่แล้ว

    Please explain top 5 algorithms in detail
    And make more this type of video

  • @hemanth_koll
    @hemanth_koll ปีที่แล้ว

    Requesting you to kindly start a DSA course/boot camp - it would be very much helpful - thank you

  • @biniyamabera8356
    @biniyamabera8356 ปีที่แล้ว

    yes, We want a video on top 5 most asked data structures

  • @pratyushkumarsahoo6117
    @pratyushkumarsahoo6117 ปีที่แล้ว +1

    We want top 5 most asked data structures

  • @MattJarjoura
    @MattJarjoura ปีที่แล้ว

    What company is asking you dynamic programming questions? Those are really hard to answer fast in a 45 min interview and teams and companies I've interviewed do not like asking them.

  • @makyxyz3375
    @makyxyz3375 ปีที่แล้ว

    Hi Power Couple, to crack coding interviews is needed to have a academic formation of data structures and algo? Thanks

  • @mehdihassan93
    @mehdihassan93 4 หลายเดือนก่อน

    I can do these algorithms even if someone ask me in the middle of sleep. however I am still worried about the upcoming interview

  • @Webify_Mastery
    @Webify_Mastery ปีที่แล้ว

    I recently completed my mern stack course whenever I tried to build any website by my one I get stucked at start how can I improve ? Please

  • @samratsaha447
    @samratsaha447 11 หลายเดือนก่อน

    top 5 DSA asked, we need a video on this topic

  • @ishaaq5506
    @ishaaq5506 ปีที่แล้ว

    Yes please Top 5 Data structures.

  • @overclockedlife7550
    @overclockedlife7550 ปีที่แล้ว

    How good do we need to know algorithms for front-end interviews?

  • @m_yoda
    @m_yoda ปีที่แล้ว

    Sometimes it is hard to understand you because of your English, but thank you for the video overall.

  • @shubhammergu8158
    @shubhammergu8158 7 หลายเดือนก่อน

    Must make video - Top 5 most asked Data Structures

  • @etcode
    @etcode ปีที่แล้ว +1

    How long in average should take for a person to master all of these algorithms? As many things the answer is always it depends, but I would like to you from you who is reading this comment, how long did it take to you to master these algorithms? 😮

  • @muditjaiswal
    @muditjaiswal ปีที่แล้ว

    For the "Top k elements" for your solution the complexity is actually O(nlogn), since in worst case scenario k tends to n.

    • @aliiucer
      @aliiucer ปีที่แล้ว

      no it can never exceed nlogk, assume k==1 so there is no way to make it nlogn

    • @muditjaiswal
      @muditjaiswal ปีที่แล้ว

      @@aliiucer you are considering the best case scenario, mostly folks talk about worst case complexity & average case complexity when talking about an algorithm.

    • @aliiucer
      @aliiucer ปีที่แล้ว +4

      @@muditjaiswal actually k is a different variable than n so nlogk is a better choice, worst case is a different thing

  • @31ankitnain41
    @31ankitnain41 ปีที่แล้ว +1

    sir please make a detailed video on dsa as whole about topics most ques are asked

    • @sahilandsarra
      @sahilandsarra  ปีที่แล้ว

      It’s already linked at the end of the video.

  • @sekarrajagk8261
    @sekarrajagk8261 ปีที่แล้ว

    top 5 most asked data structure is needed

  • @riddhiksingh
    @riddhiksingh 20 ชั่วโมงที่ผ่านมา

    Please make videos on top 5 data structures

  • @thellaidhinesh8646
    @thellaidhinesh8646 ปีที่แล้ว

    Hey bro, Im finding it difficult to find the time complexity for back tracking sum. Can you please a video about that?

  • @Vivekkumar-zc7mz
    @Vivekkumar-zc7mz ปีที่แล้ว +1

    I always watching ur videos and learned alot

  • @yughendermeda6231
    @yughendermeda6231 9 หลายเดือนก่อน

    It okay that you have selected for 127 interviews but can you please explain what you did in your resume to shortlist for those interviews.

  • @VikasNikhil
    @VikasNikhil ปีที่แล้ว

    awesome video, the way you are speaking I feel I am listening to an AI machine. Thanks :)

  • @erbenton07
    @erbenton07 ปีที่แล้ว

    What is the practical application of these algorithms?

  • @DigvijaySingh-se2ll
    @DigvijaySingh-se2ll ปีที่แล้ว +1

    please make a video on flow state and how to get into it

  • @AyushKumar-pq4wi
    @AyushKumar-pq4wi ปีที่แล้ว +1

    can you please make a detailed video on most asked data structure Topics In an interviews ?

  • @madhav_0075
    @madhav_0075 ปีที่แล้ว

    Really needed sir kindly teach

  • @almousafir4041
    @almousafir4041 ปีที่แล้ว +1

    Nice video 👍

  • @codedecks
    @codedecks ปีที่แล้ว

    Waiting for the top 5 system design concepts asked in Google interviews ❤

  • @rahuldwivedi4758
    @rahuldwivedi4758 ปีที่แล้ว

    Binary Search is not in the list?

  • @SachinPatel-xi9fn
    @SachinPatel-xi9fn ปีที่แล้ว

    Could you please make a video on the future of developer after 5 years from now ? As chatGPT and AI is evolving.

  • @VivekSingh-wu9mx
    @VivekSingh-wu9mx ปีที่แล้ว +2

    abe bhai itni videos bna chuka hai abhi tak voice ki volume aur tuning shi nhi kr paya. But great content though.

  • @stefanristic9245
    @stefanristic9245 ปีที่แล้ว

    is there any difference between java and python algorithm courses except the fact one is written in java while the other is written in python?

  • @anselum540
    @anselum540 ปีที่แล้ว

    Do I need to master DSA while I want to become a full stack web developer?
    If I need to study DSA which language you prefer Java or JavaScript ?

    • @shashankshekhar4208
      @shashankshekhar4208 ปีที่แล้ว +1

      1. Practically yes, most companies filter candidates by DSA online test.
      2. For DSA don't use Java as it is very verbose so it is takes more time in time constraint environment. I personally use python, javascript should be fine as well.

    • @anselum540
      @anselum540 ปีที่แล้ว

      @@shashankshekhar4208 ok thanks 👍

  • @jitendaranjan7501
    @jitendaranjan7501 ปีที่แล้ว

    Love you bro I inspire you

  • @ganeshreddykomitireddy5128
    @ganeshreddykomitireddy5128 ปีที่แล้ว

    Please make a video on the top 5 datastructures

  • @K9TX
    @K9TX ปีที่แล้ว +2

    big fan sir

  • @rizwanullah3864
    @rizwanullah3864 ปีที่แล้ว

    @PowerCouple, please make one video on calculating Time complexity

  • @peternguyen9382
    @peternguyen9382 ปีที่แล้ว

    sorry what is log(k)? is that log base 10 of k.

  • @OPM_TRE4.0
    @OPM_TRE4.0 ปีที่แล้ว +1

    CAN YOU PLEASE MAKE A FULL COURCE ON DSA, BCOZ YOUR WAY OF EXPLANATION IS MINDBLOWING

  • @rahulbhagwat2182
    @rahulbhagwat2182 ปีที่แล้ว

    Hello
    do you do a personal coaching call or is there some way I can connect with you …..I am really lost in this journey and needed some help
    Thanks

  • @Orewaslayer
    @Orewaslayer 7 หลายเดือนก่อน

    Sir can you please tell me the proper guild line to start programming journey
    For Fe students