Master Data Structures & Algorithms For FREE at AlgoMap.io!
@babaev1694 ай бұрын
Like the balance between conciseness and high information value. Thank you for the efforts, keep doing!
@GregHogg4 ай бұрын
Glad to hear it!!
@siddhantkumar94924 ай бұрын
Great tutorial! Highly appreciate your efforts in creating such crisp and concise video covering all aspects of the data structure, keep up the great work 💯
@GregHogg4 ай бұрын
Thank you buddy that means a lot ❤️
@Hunter.Hunter4 ай бұрын
Thats Awesome.. i was thinking of switching from JAVA to PYTHON for DSA and you started this seriessss..... Learning alottt!!! Thanksssss :)
@GregHogg4 ай бұрын
Enjoy!
@richardpro89274 ай бұрын
This series is getting addictive I am a kotlin person basically but your python concepts have a lot of rub over effect ❤ Thanks a ton
@GregHogg4 ай бұрын
Haha that's awesome ❤️
@abhishek19784 ай бұрын
You are a life saver
@GregHogg4 ай бұрын
Haha glad to hear it!!
@sharathkumard4 ай бұрын
Love it. Please make more on dsa and algorithms
@GregHogg4 ай бұрын
Will do!
@asagiai49654 ай бұрын
I think Queue also have count or isEmpty property. In another note learning Stacks and Queues is the gateway to learning other DS and Algos. Since some DS and Algos are Stacks and Queues implementation.
@GregHogg4 ай бұрын
You're right about everything here :)
@asagiai49654 ай бұрын
@@GregHogg ah thank you :)
@arth27764 ай бұрын
I love these videos! Can you please do sorting algorithms next? I started DSA with python few weeks ago so these videos help me out and I sometimes use them to revise concepts. Thanks
@GregHogg4 ай бұрын
Glad to hear it! Yeah sorting is coming up 🥰
@verlderАй бұрын
Thanks !
@Andrew_N_G4 ай бұрын
Hey bro do make a similar kind of playlist on system design after this dsa series
@arthfreestyle99742 ай бұрын
If I use an array for a queue, can I just use pop(0) for deque ?
@DinDin-p9y4 ай бұрын
Do companies actually expect to be good in DSA and problem solving for data engineer and data scientist roles??
@GregHogg4 ай бұрын
Yes they do
@manjugamingzone4904 ай бұрын
@@GregHogg Does data scientists will become more demand in future?
@suhas51204 ай бұрын
In dequenhow to add element from left .you said we can element from both ends
@HungryBen-d7y3 ай бұрын
enqueue is like this [1, 2] means I appended only at the end. dequeue is like this [2] means I removed from the beginning. you can only add at the end but not both sides for queue.