Valid Anagram - Leetcode 242 - Hashmaps & Sets (Python)

แชร์
ฝัง
  • เผยแพร่เมื่อ 14 ม.ค. 2025

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

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

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

  • @helloworldcsofficial
    @helloworldcsofficial 2 หลายเดือนก่อน +1

    Do you recommend using Counter in an actual interview?

    • @CharlyBraga
      @CharlyBraga 16 วันที่ผ่านมา

      I think maybe not. Because the interviewer wants to see your ability to solve a problem step by step.

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

    return sorted(s) == sorted(t) 🗿

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

      The time complexity matters and this one is slow

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

    Another Solution :
    def isAnagram(self, s, t):
    return sorted(s) == sorted(t)

    • @CharlyBraga
      @CharlyBraga 15 วันที่ผ่านมา

      It works, but the time complexity is a little higher, O(nlogn)

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

    I used a similar approach to what I did in Ransom Note.
    for i in set(s):
    if s.count(i) != t.count(i) or len(s) != len(t):
    return False
    return True

  • @CharlyBraga
    @CharlyBraga 15 วันที่ผ่านมา

    Is the time complexity really O(n)? I ask it because the Counter need run through list to creat the dictionary and sort the last one.

  • @jorgesanabria6484
    @jorgesanabria6484 ปีที่แล้ว

    This is an awesome series keep it up 👍🏾

    • @GregHogg
      @GregHogg  ปีที่แล้ว

      Thank you! :)

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

      please reply sir,iam learning python and using in cpp will it possible because iam afraid so many are desupproting me like python is too slow you may not work in icpc and in c++ has so many libaries to solve problems where not in python or not idont know? @@GregHogg

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

    nice short solution, thanks for sharing

  • @ashraf_isb
    @ashraf_isb ปีที่แล้ว

    thanks for sharing this

    • @GregHogg
      @GregHogg  ปีที่แล้ว

      Thank you :)

  • @cmarquay
    @cmarquay ปีที่แล้ว

    Happy end of year

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

      You too Christian!

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

    great