Leetcode with dani – Telegram
Leetcode with dani
1.31K subscribers
196 photos
14 videos
56 files
240 links
Join us and let's tackle leet code questions together: improve your problem-solving skills
Preparing for coding interviews
learning new algorithms and data structures
connect with other coding enthusiasts
Download Telegram
I HAVE INTERVIEWED ON A2SV ON THURSDAY AND THE QUESTION WAS



/*
Question Denoscription
Given a string s and an integer k, return the number of substrings in s of length k with no repeated characters.

Example 1:

Input: s = "havefunonleetcode", k = 5
Output: 6
Explanation: There are 6 substrings they are: 'havef','avefu','vefun','efuno','etcod','tcode'.

Example 2:

Input: s = "home", k = 5
Output: 0
Explanation: Notice k can be larger than the length of s. In this case, it is not possible to find any substring.


Constraints:
1 <= s.length <= 104
s consists of lowercase English letters.
1 <= k <= 104
*/


FINALLY I HAVE SOLVED THE QUESTION LIKE THIS IN C++ MAY BE IT IS USEFUL
#include <bits/stdc++.h>
using namespace std;
class Solution {
    public :
        int solve (string s,int k){
            vector <int> freq(26);
           
            int l=0;int r=0;
            int offset=(int)'a';
            int ans=0;
            while (r<s.size()){
                if (r-l<k-1){  
                   freq[s[r]-offset]++;
                    r++;            
                }else if (r-l==k-1){
                    freq[s[r]-offset]++;
                    r++;
                    bool t=true;
                    for (int x:freq){
                        if (x>1){
                          t=false;
                        }
                    }
                    t?ans+=1:ans=ans;
                   
                }else if (r-l>k-1){
                    freq[s[l]-offset]--;
                    l++;
                }
               
            }
            return ans;
        }
};

int main () {
    string s="abcdefhijklmnopqrstuvwxyz";
    int k=5;
    Solution* sol=new Solution();
    cout<<sol->solve(s,k);
}
🙏42❤‍🔥1
Todays another interview questions
"""

Question Denoscription
Given an input string s, reverse the order of the words.

A word is defined as a sequence of non-space characters. The words in s will be separated by at least one space.

Return a string of the words in reverse order concatenated by a single space.

Note that s may contain leading or trailing spaces or multiple spaces between two words.
The returned string should only have a single space separating the words. Do not include any extra spaces.



Example 1:

Input: s = "the sky is blue"
Output: "blue is sky the"
Example 2:

Input: s = " hello world "
Output: "world hello"
Explanation: Your reversed string should not contain leading or trailing spaces.
Example 3:

Input: s = "a good example"
Output: "example good a"
Explanation: You need to reduce multiple spaces between two words to a single space in the reversed string.


Constraints:

1 <= s.length <= 104
s contains English letters (upper-case and lower-case), digits, and spaces ' '.
There is at least one word in s.


"a good example"
["a","good","example"]
L R


[example,"good","a"]


"""

#will s will split
#variables left->0 rght ->len(splited)-1
#will have a while l<L left+=1 righ-=1


def revercing_word(s):
words=[]
for word in s.split(" "):
if word:
words.append(word)

left=0
right=len(words)-1


while left<right:
words[left],words[right]= words[right],words[left]
left+=1
right-=1

return " ".join(words)
print(revercing_word("hello world"))
5
If u love science and PHY check this utube channel it's makes science and phy easy and interesting https://youtube.com/@mahesh_shenoy?si=3kd_uV6fyvcMKi9T
Forwarded from Yonathan
You saw the demo. Now it’s time to try it.
Mekach’s waitlist is officially open.

🛡 https://mekach.yonathan.tech
Please open Telegram to view this post
VIEW IN TELEGRAM
📢 Deadline Extended!

Due to the overwhelming number of requests, we’ve officially extended the A2SV G7 Education Application deadline to November 21.

This is your moment to learn, grow, and master world-class software engineering skills through one of Africa’s most rigorous and impactful education programs.

Join a program that builds a solid foundation for your tech career and opens doors to global opportunities at companies like Google, Bloomberg, Amazon, and Databricks. Don’t miss it! 🌍

👉 Apply now: https://form.typeform.com/to/xIK0MwKn
👉Spread the word! Share to a friend and help us reach more aspiring engineers.
😭😭
Forwarded from 4-3-3 ስፖርት በኢትዮጵያ (𝐌𝐫.Ʀᴏʙᴀ)
የኮሪደር ሳር" በልተው የተያዙት አህዮች ጉዳይ!

እነዚህ ሁለት አህዮች ከአጥሩ ወጥተው፣ ብዙ ውዝግብ በሚያስነሳ ተግባር ላይ ተሰማርተው መገኘታቸው ተዘግቧል።

የክሱ ዝርዝር:
* ተከሳሾች: ሁለት አህያዎች ።
* የወንጀል ድርጊት:"የኮሪደር ሳር" (Corridor Grass) መብላት።

* የእስር ጊዜ: ከተያዙ በኋላ ለ30 ሰዓታት ያህል ታስረው እንደቆዩ ተሰምቷል።

የአካባቢው ነዋሪዎች እና ምስክሮች የአህዮቹ ታስሮ መቆየት ከመጠን በላይ እንደሆነ ቢገልጹም፣ አህዮቹ ግን በዝምታቸው እና በንፁህ ዓይናቸው የሚገባቸውን ፍርድ እየጠበቁ ነው።


ተጨማሪ ዝርዝር መረጃውን በዜና ቻናላችን ያግኙ - 433 World News

@Bisrat_Sport_433et @Bisrat_Sport_433et
🤣15🐳21
Forwarded from 「 Eyu core 」
በግ መስለዉ ወደ Spain ለመግባት ሲሞክሩ ድንበር ላይ የተያዙ ስደተኞች ናቸዉ
😁13🌚4
Hope🥺
29🫡3😢1
— UTTA 🍯
😁13
🤯52
Forwarded from ALX Ethiopia
Join Ethiopia's premier competitive programming hackathon.

A full-day, on-site event dedicated to advanced problem-solving, data structures and algorithms.

Form a team of three and compete in divisions open to both advanced (Elite) and intermediate (Open) coders for national recognition and exciting prizes! 🏆

🗓 ቅዳሜ, ኅዳር 27 2018 (December 6, 2025)
3፡00 - 11፡00 ሰአት (9:00 AM – 5:00 PM)
📍 CapStone ALX Tech Hub, Lideta
🔗 Register now: https://luma.com/9pobz8sd

#ALXEthiopia #CodeLeagueEthiopia #CompetitiveProgramming #DSA #dohardthings #ALXAfrica #lifeatALX