224. Basic Calculator - Day 20/30 Leetcode November Challenge

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

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

  • @Algorithmist
    @Algorithmist  2 ปีที่แล้ว

    How basic was your calculator?

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

    I can tell your videos are best content in youtube

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

    we can solve the double digit issue and use for loop by implementing current_number = currrent_number*10+int(c) if c is a number

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

    Personally I used stacks within stack to represent the (....) and when I come across the ")" I evaluate the last stack and append the result to the previous stack and keep doing it