Stack - Data Structures & Algorithms Tutorial In Python #7

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

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

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

    Do you want to learn python from me with a lot of interactive quizzes, and exercises? Here is my project-based python learning course: codebasics.io/courses/python-for-beginner-and-intermediate-learners

  • @apoorvshrivastava3544
    @apoorvshrivastava3544 4 года назад +122

    This series gotta be super hit in future

    • @daniel280187
      @daniel280187 4 года назад +12

      I'm watching it from the future and I can tell you is a super hit for me!

    • @rheumaticharm9551
      @rheumaticharm9551 3 года назад +3

      @@daniel280187 no I'm watching from future and it is no where near super hit considering the Indian origin. Like if even 0.5 percent indian started watching this, the views will be in millions. If ur not indian then u might have trouble understanding that 70-80 percent graduates are engineers and learning some coding language and even on those python is on top. So yeah it should have atleast 1 million views man.

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

      @@rheumaticharm9551 I think I'm from future and these tutorials are masterclass hit now !!

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

      @@rheumaticharm9551 okay but what about now?

    • @Afreeennnn
      @Afreeennnn 6 месяцев назад +1

      No. I'm frm the future🚶

  • @jccrunk4real
    @jccrunk4real 11 месяцев назад +5

    This is literally the best explanation of a stack I have ever seen. I'm someone who dreads data structures and algorithms but after watching this video, I'm actually excited to watch the rest of your DS tutorials. Thank you!

  • @RealDrDoom
    @RealDrDoom 2 года назад +117

    Absolutely hilarious bit at the end. I couldn't stop laughing! 😂 :
    "If you look at the solution without first solving the problem, it's going to download the covid-19 virus to your computer".

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

      @@IITVital kya bol raha hai bhai? IIT ka naam badnaam karega kya

  • @sourabhbhandary1181
    @sourabhbhandary1181 3 года назад +23

    The way, you explain things, I love it. Most loving part is the exercises.

  • @anastasiakratschmer9560
    @anastasiakratschmer9560 Год назад +5

    You make some of the easiest to understand explanations for coding stuff that I have come across on the internet. Thank you so much!

  • @sukurcf
    @sukurcf 3 года назад +7

    "Watch other data structures videos"
    I will for sure.
    At first I had curiosity. But now, this channel have my attention.

  • @Sillysmiles76
    @Sillysmiles76 3 года назад +8

    Data Structures became very interesting with your videos Thank You, sir!!

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

    Simplified way of explanation, I've been trying to find some resources for python dsa and this is the best. !!

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

    Read stacks & queues in 12th class,... but always wondered what its for... browser example really makes sense

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

    Second exercise item in this tutorial is a brilliant use of push & pops in stack....!
    Got the logic for similar set of questions in leetcode. Thank You.

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

    Your videos are amazing, you make learning Python much easier! Thankyou :)

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

    Thanks a lot, It helped me to understand the concept in python. Keep making such good contents. Here is the code of the exercise questions.
    solution 1:
    from collections import deque
    class stack:
    def __init__(self):
    self.container=deque()
    def push(self,val):
    self.container.append(val)
    def pop(self):
    return self.container.pop()
    def peek(self):
    return self.container[-1]
    def is_empty(self):
    return len(self.container)==0
    def size(self):
    return len(self.container)
    def reversestring(s):
    st=stack()
    for i in s:
    st.push(i)
    revstr=""
    while(st.size()!=0):
    revstr+=st.pop()
    return revstr
    print("this function is for reversing a string using stack")
    print(reversestring("hello my name is rajnish"))
    solution 2:
    from collections import deque
    class stack:
    def __init__(self):
    self.container=deque()
    def push(self,val):
    self.container.append(val)
    def pop(self):
    return self.container.pop()
    def peek(self):
    return self.container[-1]
    def is_empty(self):
    return len(self.container)==0
    def size(self):
    return len(self.container)
    def isbalanced(s):
    st=stack()
    flag=0
    ch=0
    for i in s:
    if i=="(" or i=="{" or i=="[":
    ch+=1
    st.push(i)
    if (i==")" and ch==0) or (i=="}" and ch==0) or (i=="]" and ch==0):
    flag=1
    break
    if i==")" or i=="}" or i=="]":
    x=st.pop()
    ch-=1
    if x=="(" and i!=")":
    flag=1
    break
    if x=="{" and i!="}":
    flag=1
    break
    if x=="[" and i!="]":
    flag=1
    break
    if flag==1:
    return "False"
    else:
    return "True"
    print(isbalanced("({a+b})"))
    print(isbalanced("))((a+b}{"))
    print(isbalanced("((a+b))"))
    print(isbalanced("))"))
    print(isbalanced("[a+b]*(x+2y)*{gg+kk}"))

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

    Thank you very much, for sharing knowledge for free!

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

    Thank you. You have a great way of explaining concepts . Codebasics for dummies :)

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

    thank you dear Sir! Your videos are easy to follow and they are very informative. Take care during outbreak

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

    There's so much in my head i need to remember and idk what any of it is for sometimes.

  • @sarahamad5899
    @sarahamad5899 3 года назад +5

    covid-19 on the PC good one :)

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

    Covid virus cringe apart, this is a clean and concise video. Thanks!

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

      I am happy this was helpful to you.

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

    Also, if you inherited deque you wouldn't have to redefine some methods, such as pop, you could just reference the base class method. (I get that this tutorial wasn't about OOP)

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

    Thank you. This playlist have been very helpful. Keep up the great work!

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

    For interview and for oral, this is helpful. Thanks for the videos/

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

    sir please make full tutorial on data structures along with algorithm using python with every detail please we newbie programmer need this . and a thanku to you sir for this video

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

    Thank you. This video help me to understand the subjet.

  • @oluwatosin001
    @oluwatosin001 7 месяцев назад

    simple and precise
    Thank you!

  • @gautamkartik
    @gautamkartik 3 года назад +5

    Covid 19 virus 😂, i felt like classroom immediately

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

    Awesome content! It's great that you're able to squeeze in so much valuable information into a 13 minute video.
    Also, sorry if I sound pedantic here... but I believe the correct pronunciation of deque is "deck" (written in the documentation at 7:59).
    Thank you for the valuable content :D

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

      Narin thanks for informing about pronunciation. My english is not the best and I take your feedback positively. Thanks for teaching me that and I will use "deck" going forward :)

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

    just a random vdo i clicked nd this is what i got the diamond ,while i was looking for gold.....!!! you're the best sir.

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

      I am happy this was helpful to you.

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

    great content ! how is memory management for deque? is it better than list

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

    so detailed, i like the exercises

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

    ***solution spoiler***: the use of dictionary in problem 2 was so smart!

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

    Hello Sir, can you please create a video developing of project using only DSA ?

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

    Super exercises 👍

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

    Hi Dhaval, I tried implemening the STACK using Linked list cause I was curious how the dequeue was working behind the scene so here is my solution for the 1st Exercise. Do have a look and if you have any suggestions then let me know..
    # Stack using Linked List
    class Node:
    def __init__(self, prev = None, data = None, next = None) -> None:
    self.prev = prev
    self.data = data
    self.next = next

    class Stack:
    def __init__(self) -> None:
    self.head = None
    self.top = None

    def push(self, data):
    if self.head == None:
    node = Node(None, data, None)
    self.head = node
    return
    itr = self.head

    while itr.next:
    itr = itr.next

    node = Node(itr, data, None)
    itr.next = node
    self.top = node

    def pop(self):
    # print(self.top.data)
    if self.head == None:
    return print("Stack is Empty")
    data = ''
    if self.top.prev is not None:
    data = self.top.data
    self.top.prev.next = None
    self.top = self.top.prev
    else:
    data = self.top.data
    self.head = None
    self.top = None
    return data
    def peek(self):
    if self.head == None:
    return print("Stack is Empty")
    return self.top.data
    def print(self):
    if self.head == None:
    return print("Stack is Empty")
    itr = self.head
    llstr = ''
    while itr:
    llstr += f"{ itr.data } => "
    itr = itr.next
    print(llstr)
    def size(self):
    count = 0
    itr = self.head
    while itr:
    count += 1
    itr = itr.next
    return count
    def reverse_string(string):
    s = Stack()
    for c in string:
    s.push(c)
    rstring = ''
    while s.size():
    rstring += s.pop()
    print(rstring)
    s.print()
    reverse_string("We will conquere COVID-19")

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

    It really helps me, Thank you so much!

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

    Thank you for another extremely useful video!
    I would like to present my approach on the second exercise. Please reach out and provide feedback for this implementation:
    from collections import deque
    class Stack:
    def __init__(self):
    self.container = deque()
    def push(self, val):
    self.container.append(val)
    def pop(self):
    return self.container.pop()
    def peek(self):
    return self.container[-1]
    def is_empty(self):
    return len(self.container)==0
    def size(self):
    return len(self.container)
    def reverse_string(a_string):
    s = Stack()
    for x in a_string:
    s.push(x)
    new_string = ''
    for y in range(s.size()):
    new_string += s.pop()
    return new_string
    def is_balanced(a_string):
    s = Stack()
    d = Stack()
    check = Stack()
    for char in a_string:
    if char in "{}[]()":
    s.push(char)
    for char in range(len(s.container)-1, -1, -1):
    d.push(s.container[char])
    #print(s.container)
    #print(d.container)
    if len(s.container) != 0 and len(s.container) % 2 == 0:
    mean = int(len(s.container)/2)
    for i in range(mean):
    check.push(s.container[i]+d.container[i])
    for set in check.container:
    if set not in ["[]","()","{}"]:
    c = False
    else:
    c = True
    return c
    print(is_balanced("({a+b})"))
    print(is_balanced("))((a+b}{"))
    print(is_balanced("((a+b))"))
    print(is_balanced("))"))
    print(is_balanced("[a+b]*(x+2y)*{gg+kk}"))

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

      Thanks for the answers veryvery helpfull

  • @Rajkumar-vc2pg
    @Rajkumar-vc2pg 3 года назад

    some one told me coding people don't have humour and boring , then i showed them ur channel

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

    god lvl teaching,,pls expand the series more

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

    thankyou very much sir :)

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

    Diagram for Stack Implementation quick correction
    4:52 - Python Code Sample
    stk = deque()
    stk.append(5)
    stk.append(89) # correction 89 not 9
    stk.pop() # returns 89

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

    very helpful

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

    If one is not able to solve the second exercise on his/her own this means his/her logical skills are weak? I heard a youtuber saying that if you know the basic operations of stacks then you should be able to do it.

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

    Thanks for this Video it's awesome!
    Please can you tell me how to puch another value for every node in stack without to adjust the Class Node..?

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

    thank you so much

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

    "Download COVID-19 virus". That was really funny 😂. But tutorial was awesome. 🤩🤩

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

    why you use self.container? I am learning, I will think just self is enough, I don't know the reason self.container, thanks for help!

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

    Why is it that id(list) doesn't change even after append as list is basically a dynamic array?

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

    i am so much grateful to you thank you very much for such clear and neat explanation

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

    in interviews we can use deque? Might be dumb question but im just now learning DS ALGO?

  • @AshuSingh-zf4bw
    @AshuSingh-zf4bw 3 года назад

    Wow. Just Amazing Content. Learning.so much through you 🙂

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

    Create a video on how to crack the coding interview

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

    Your theoretical explanation is top notch, but explanation of code sure needs some improvement beginner with the less knowledge have difficulty in understanding

  • @mahdip.4674
    @mahdip.4674 2 года назад +1

    can we search for max or min value in stack and make it O(1)?

  • @KARTHIKA-r2y
    @KARTHIKA-r2y Месяц назад +1

    without formatting stack object to str how are you printing by just giving its name sir?
    Without the __str__ I am getting memory address only!
    def __str__(self):
    return str(list(self.container))

    • @perfectcell1157
      @perfectcell1157 14 дней назад

      It's probably because he is using jupyter notebook
      in your Stack class write the following:
      def print(self):
      for val in self.container:
      print(val)
      and if you want it to print it like a legitimate stack (first element at the bottom)
      reverse the self.container in the 'for' condition with reversed(self.container)
      now you can easily print the stack you have by simply calling the print() method
      eg.
      S = Stack()
      S.push(1)
      S.push(2)
      S.push(3)
      S.print()
      outputs:
      3
      2
      1
      hope this helped

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

    Nice tutorial and it helped me a lot. Waiting for the next set of Data structure tutorials.

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

    Instructions weren't clear, now i'm in quarantine

  • @mdnafis-dg4dn
    @mdnafis-dg4dn 4 года назад

    sir please create a playlist about python algorithm

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

    thanks for the support you are adding to the community 🙏

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

    For the example of webbrowser back and forward button, why can't we use doubly linkedlist ?

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

    ThankYou

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

    I think its better my friend if you make the container self._container instead of self.container , private property

  • @sirajansari2848
    @sirajansari2848 7 месяцев назад

    I implemented below short solution to the first exercise :
    from collections import deque
    def reverse_string(string):
    lst = []
    stack = deque(string)
    for i in string:
    lst.append(stack.pop())
    return ''.join(lst)
    print(reverse_string("We will conquere COVID-19"))
    >>> 91-DIVOC ereuqnoc lliw eW

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

    Hey in the last exercise why did we returned stack.size()==0 can you explain

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

    How would you manage this history in terms of data structure if you are browser developer?
    Not stack but Doubly Linked List. :-P. JFF. I would try stack too.

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

    Man I have been scratching my heads how to do the second Excersise for 1 day then I had finally to open solution 2 and now m like wait I could have done that.... But seriously damn nice way of implementing hash table to stack earlier I was first trying to see if I can do this with list and ord (of those brackets) to compare them and came up with complicated program but at the end it doesn't work on all test cases I found this to be much better but the last part of the code is really difficult to understand

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

    But how we can overcome the challenge of memory using deque rather than list ?

  • @kk420100
    @kk420100 7 месяцев назад +2

    seriously what the heck! i was looking to download covid19 virus but instead downloaded a big fat python.😜

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

    The answer is
    from collections import deque
    class Stack:
    def __init__(self):
    self.container = deque()
    def push(self, val):
    self.container.append(val)
    def pop(self):
    return self.container.pop()
    def peek(self):
    return self.container[-1]
    def is_empty(self):
    return len(self.container) == 0
    def size(self):
    return len(self.container)
    def reverse_string(s):
    stack = Stack()
    for ch in s:
    stack.push(ch)
    rstr = ''
    while stack.size()!=0:
    rstr += stack.pop()
    return rstr
    if __name__ == '__main__':
    print(reverse_string("We will conquere COVI-19"))
    print(reverse_string("I am the king"))

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

    hye , can we implement stack in python without using in-build function like append and pop ??

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

    4:58 in python code sample typo correction stk.append(89) instead of stk.append(9)

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

    can we do 2nd ques with the help of regular expressions? if yes then please tell me

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

    i tried the exercise and run your solution.
    On the last example if I run this print(is_balanced("[a+b]*(x+2y)*{gg+kk}"))
    the answer is true.
    But on the debug mode the answer is false.
    not sure why though.

  • @33v4.
    @33v4. 3 года назад

    I'm watching on my phone and now I'll have to wait till tomorrow to click that link when I'm get my PC 😅 you never know right

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

    Hey great content. Very very helpful.♥️

  • @MuhammadAli-bn4ju
    @MuhammadAli-bn4ju Год назад

    in python: when you add new elements to a list its id address will not change! and I know that python list has no max size. so, if that true, is that mean it's no problem using it as a stack?

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

      no watch the portion of this video ruclips.net/video/p_9t8uhXQdk/видео.html

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

    Solution 1
    class stack:
    def __init__(self):
    self.stack=deque()
    self.ans=""
    def insert(self,ele):
    self.stack.append(ele)
    def remove(self):
    self.stack.pop()
    def reverse_string(self):
    ele=self.stack.pop()
    self.ans+=ele
    if len(self.stack)!=0:
    return self.reverse_string()
    else:
    return self.ans
    from collections import deque
    s1=stack()
    s1.insert("0")
    s1.insert("1")
    s1.insert("2")
    s1.insert("3")
    s1.insert("4")
    print(s1.reverse_string())

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

    example of website is very useful

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

    Should this be episode #6?

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

      You are right. Updated the title. Thank you 😊

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

    Why is implementing Stack using a deque a better option than implementing stack using a linked list?

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

      Its that we don't have to copy the already present elements in order to insert a new element....since linked list dynamic

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

    ayooo
    the repercussions for clicking the solution without doing the exercises has me weak🤣🤣🤣
    he litterally said your laptop's going to get corona virus🤣🤣 if you don't do the work first😂

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

    i implemented same concept in leetcode problem. it's working but it failed for 9 testcases like '((' , '(['. then i modified it.
    In Exercise problem:
    class Solution:
    def mapper(self, c1, c2):
    operation = {
    '}': '{',
    ')': '(',
    ']': '['
    }
    return operation[c1] == c2
    def isValid(self, s: str) -> bool:
    stack = Stack()
    if len(s) == 1:
    return False
    for char in s:
    if char == '(' or char == '{' or char == '[':
    stack.push(char)
    if char == ')' or char == '}' or char == ']':
    if stack.is_empty():
    return False
    if not self.mapper(char, stack.pop()):
    return False
    if stack.size() != 0:
    return False
    return True

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

    I am not getting that if we are not giving the length of the List so how it can be get filled??

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

    Pandemic is over. So is it ok to click the solution link before I solve? hahahah Thanks for these videos!!

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

      Pandemic is over but COVID infections are still going on 😧 So be careful when click on the solution link 😆🤣

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

    class Check:
    def __init__(self):
    self.check = deque()
    def push(self,val):
    self.check.append(val)
    def is_paranthesis(self):
    para = ['{','}','(',')','[',']']
    for i in para:
    return self.check[-1].count(i)==1

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

    best

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

    Someone said when you were making this video you are the person who was closest to god

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

    Hey man my laptop got virus I think this happend due to checking the solution before doing it 😂😂😜. Anyway Thankyou buddy.

  • @Heck-ed6sr
    @Heck-ed6sr 2 года назад

    Can anyone explain to me how the memory storage/allocation of stacks work? Do they face similar issues with dynamic arrays (copying and paste each individual data one at a time to the new memory location)? Any help will be much appreciated! Thanks!

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

      stack is built using different data structures, In python as told in the video, if we use deque to implement it then it works as a doubly linked list so python memory allocation is similar to that of a linked list. watch again from 6:40

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

    Here is a different solution for second exercise
    from collections import deque
    def parenthesis_matching(equation):
    stack=deque()
    arr=deque()
    for ch in equation:
    stack.append(ch)
    for ch in stack:
    if ch=="(":
    arr.append("(")
    elif ch=="[":
    arr.append("[")
    elif ch=="{":
    arr.append("{")
    elif ch==")":
    try:
    arr.remove("(")
    except:
    return False
    elif ch=="]":
    try:
    arr.remove("[")
    except:
    return False
    elif ch=="}":
    try:
    arr.remove("{")
    except:
    return False
    if len(arr)==0:
    return True
    else:
    return False
    if __name__=="__main__":
    s=input("Enter the equation")
    print(parenthesis_matching(s))

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

      Put continue at the end of every condition too.

  • @xXmayank.kumarXx
    @xXmayank.kumarXx 3 года назад

    12:10
    didn't know about the digital variant of this virus

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

    hi sir,How to print elements of stack

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

      See def show in the below code. It shows all the elements in the stack :)
      class Stack():
      def __init__(self):
      self.container = deque()
      def push(self,val):
      self.container.append(val)
      def pop(self):
      return self.container.pop()
      def peek(self):
      return self.container[-1]
      def is_empty(self):
      return len(self.container)==0
      def size(self):
      return len(self.container)
      def show(self):
      return self.container

  • @eyosiyasengdawork6445
    @eyosiyasengdawork6445 7 месяцев назад

    It really download COVID 19... All of the sudden, I'm sick, and so is my computer

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

    sir please give some easy exercise,the second exercise kills my whole day but i can't find the answer,so i open the sollution,after the open solution i can't understand,most of the comment below in this tutorial is they cant do second exercise sir

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

      Sure. To be honest the exercise is not that hard. But sure I will look into it in future and also add more comments to solution so that you understand

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

      @@codebasics after open sollution then only realize the problem is not hard,then only realize I have to change the way of thinking ,thank you sir for your reply, I'm big fan of you sir,you r a best teacher ,take care of ur health sir

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

    @codebasics Sir The creation of class stack is not helping in VScode please help
    Input:
    from collections import deque
    class Stack:
    def __init__(self):
    self.container = deque()
    def push(self, val):
    self.container.append(val)
    def pop(self):
    return self.container.pop()
    def peek(self):
    return self.container[-1]
    def is_empty(self):
    return len(self.container) == 0
    def size(self):
    return len(self.container)
    s = Stack()
    s.push("45")
    s.push("34")
    s.peek()
    s.size()
    s.pop()
    s.peek()
    Output:
    No output is coming its empty
    Please Help anyone

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

      u've to print the operations like follows:
      print(s.peek()) and so on !

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

      @@tejassarnaik3108 shit that's some serious stupidity on my part... Thanks sir

  • @muzammilomarzoy6616
    @muzammilomarzoy6616 8 месяцев назад

    Day 2 : 5:06

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

    can someone please explain this part of code from the solution:
    if ch==')' or ch=='}' or ch == ']':
    if stack.size()==0:
    return False
    if not is_match(ch,stack.pop()):
    return False
    return stack.size()==0

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

      Basically, you want to see that if u encounter either of the three brackets the top bracket on the stack should be its opening counterpart. I those two are the same then no False is set. In the end if no false is set and if last bracket is also processed ten return true.

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

      class Check:
      def __init__(self):
      self.check = deque()
      def push(self,val):
      self.check.append(val)
      def is_paranthesis(self):
      para = ['{','}','(',')','[',']']
      for i in para:
      return self.check[-1].count(i)==1

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

    Dont try clicking on the solution without trying to solve it first my computer is broken because it installes the COVI-19 virus!

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

    from collections import deque
    s=deque()
    a='We will conquere COVID-19'
    for i in a:
    s.append(i)
    m=' '
    for i in range (len(s)):
    rs=s.pop()
    m+=rs
    print(m)

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

    My friend saw the solution before trying, now he is covid +ve

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

      That's what happens when someone doesn't listen to my warnings .. :)

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

    what is the difference between append and push?

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

      They are the same thing ashwin . In arrays or linked list when we add element we are appending elements while in stack we say we are pushing elements .

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

      append, push, put are all the same..just based on different data structures.