Valid Anagram | 2 Approaches | Leetcode-242 | UBER

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

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

  • @adarshjha5126
    @adarshjha5126 ปีที่แล้ว +9

    Consistency++❤❤

  • @DevOpskagyaan
    @DevOpskagyaan ปีที่แล้ว +8

    Hats off to your consistency. I got to learn a lot from you . I wish i had got this channel in early 2023. But it’s ok.
    2024 I AM READY

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

    I am definitely a big fan of your teaching.
    building intuitions non stop bcs of your help. Thanks MIK

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

    Thank you sir aapke solution video dekh dekh ke main daily question practice karta hu. I am a total beginner but 3 days tak ki consistency hain daily question mein

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

    Thank you , you have improved by DSA and logical skills during this year 2023.

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

    Thanks a lot

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

    I got the Annual badge. Thanks Bhaiya 💖

  • @codeandtalk6
    @codeandtalk6 ปีที่แล้ว +5

    received 3 badges yesterday ❤❤❤

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

    class Solution {
    public boolean isAnagram (String s,String t){
    if(s.length()!=t.length ()) return false;
    int[]cnt=new int [128];
    for(char c:s.toCharArray ())
    ++cnt[c];
    for(char c:t.toCharArray())
    if(--cnt[c]

  • @saurabhKumar-hj6yp
    @saurabhKumar-hj6yp ปีที่แล้ว +1

    ❤❤

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

    I got the Annual badge. Thanks to you MIK sir

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

    pls upload geeksforgeeks potd solutions also

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

    2:00 how someone can sort the string in O(1) space complexity i.e. without converting String into char array?

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

    i think we dont need 2 for loops we can do it in one pass
    def isAnagram(self, s: str, t: str) -> bool:
    if len(s)!=len(t):
    return False
    freq=[0 for i in range(26)]
    for i in range(len(s)):
    freq[ord(s[i])-ord('a')]+=1
    freq[ord(t[i])-ord('a')]-=1
    for i in range(26):
    if freq[i]>0:
    return False
    return True

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

  • @yadav.nitin03
    @yadav.nitin03 ปีที่แล้ว +1

    Yo🎉

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

    // java code ;)
    class Solution {
    public boolean isAnagram(String s, String t) {

    char[] s1 = s.toCharArray();
    char[] t1 = t.toCharArray();
    Arrays.sort(s1);
    Arrays.sort(t1);
    return Arrays.equals(s1, t1);
    }
    }

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

    I got this question in suggestions.... 438. Find All Anagrams in a String....do you mind explaining this?

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

    first approach come to my mind is XOR, tried some cases passed some not can anyone explain why??

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

    Why in December it is giving so easy question its like half a month all easy questions except 1 was medium,but was too easy too.

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

    Solved this on my own and optimised it too🥹

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

    ❤❤❤❤