2 Pointers Algorithm - DSA Course in Python Lecture 12

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

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

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

    Master Data Structures & Algorithms For FREE at AlgoMap.io!

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

    Spitting straight value. Thanks for these

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

      It's what I do

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

    for space comp just create one iteration index like => iterator = len(num) -1 and every greater value puts original array which is num and iterator-- this is O(1) space!

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

    Great explanation, thanks a lot for sharing

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

    Thanks, your content is brilliant. I hope you'll touch monotonic stack, double heap, prefix sum...

  • @helloworldcsofficial
    @helloworldcsofficial 11 วันที่ผ่านมา

    Thanks! Will there be more easy and medium problems where we can I apply the two pointer (indices) technique?

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

    Many thanks for a great explanation!

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

      You're very welcome 🥰

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

    Perfectooo amigo

  • @timkvernen4852
    @timkvernen4852 3 หลายเดือนก่อน +1

    It's not accurate to say that the biggest values are on the outside. The second biggest value could be the second or second-to-last element.
    It would be accurate to say that the biggest value will always be on the outside.

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

    Sorry if this is stupid but why not use the insert method instead of append rather than reverse the array at the end?

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

      That will be inefficient because inserting at beginning is slow

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

    hmm, but what if they weren't in non decreasing order