1371. Find the Longest Substring Containing Vowels in Even Counts | Leetcode POTD Explained

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

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

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

    Code :-
    class Solution {
    public:
    int findTheLongestSubstring(string s) {
    unordered_map hash = {
    {'a', 1}, {'e', 2}, {'i', 4}, {'o', 8}, {'u', 16}};
    vector bitset(32, -1);
    int mask = 0, maxLen = 0;
    for (int i = 0; i < s.size(); i++) {
    mask = mask ^ hash[s[i]];
    if (mask != 0 && bitset[mask] == -1) bitset[mask] = i;
    maxLen = max(maxLen, i - bitset[mask]);
    }
    return maxLen;
    }
    };

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

    Wow nice approach please explain intuition. After hearing you for 5 mins i was able to solve it. Thanks bhai!!!

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

      Thank you ❤️❤️

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

    You explain nice from others make more video on other important question

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

      Thank you ❤️❤️, I will do..

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

    very nice explanation

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

      Thank you ❤️❤️

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

    Bhaiya please provide us solution of contest question solution please