ADD STRINGS | PYTHON SOLUTION | LEETCODE 415

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

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

  • @ej6431
    @ej6431 3 วันที่ผ่านมา

    great explanation, thank you

    • @crackfaang
      @crackfaang  2 วันที่ผ่านมา

      5-10 usually

  • @TheMaxofSpades
    @TheMaxofSpades 23 วันที่ผ่านมา

    Instead of an array, you can just use an empty string, say sum_str and do sum_str = str(curr_sum % 10) + sum_str. Then add the carry at the end in a similar fashion if it exists.

  • @Ankit-hs9nb
    @Ankit-hs9nb 2 ปีที่แล้ว +4

    Time complexity would be O(max(N, M) ?

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

    Your explanation is way easier to understand. I’m your subscriber. Can you please put a video on how to add string of two float
    Example: num1= “66.6778” num2= “34.986”
    Output : “101.6638”

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

    Just a nit point, you can do carry in the while to not have the extra check for carry `while i>=0 or j >= 0 or carry:`

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

    Can use a deque to skip the reverse at the end, by appending curr_sum to left in queue

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

      Yes! I actually do this all the time but this question is an easy one and I figured some people might not be familiar with the deque and might get confused

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

      @@crackfaangAwesome! Yea that’s what I like about your solutions you keep it simple, keep it up.

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

      @@nikhilm907 can you teach me the solution that you mention?

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

    Clean!

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

      Glad you’re enjoying the content! Subscribe so you don’t miss the latest videos

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

    Why isn’t time complexity max(n,m)?

  • @user-fj9yh8wu4i
    @user-fj9yh8wu4i 2 ปีที่แล้ว

    Why Time complexcity would not be O(max(N,M))?

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

      because he didn't do the direct concatanation of the string after i or j runs over. he padded with '0' instead

  • @NavneetKumar-fr9wj
    @NavneetKumar-fr9wj 2 ปีที่แล้ว

    why using the INT() fiunction using, asci, not ok sol

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

      It’s an easy level question, no need to overcomplicate things. This is more beginner friendly

  • @ej6431
    @ej6431 3 วันที่ผ่านมา

    can you send link to your discord, it seems to be expired in the descri of your videos