Leetcode with dani
Open in Telegram
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
Show more1 260
Subscribers
-124 hours
+17 days
+630 days
Posts Archive
1 262
π₯β¨ Ready to transform your financial future?!
β¨π₯Welcome to a world of profit, luck, and real investment powerβ
MEXCOMPANY
A trusted platform with 6 years of success and over 40,000 happy users βStart investing from just $39!β
Why MEX is a game-changer:
β
1%β5% daily profit
β
Compound interest with reinvestment β»οΈ
β
Pay with 33 cryptocurrencies
β
Withdraw in 12 major stablecoins (USDT, USDC, etc.)
β
Withdraw up to $1000 per day
β
Extra income based on your active points
β
Daily lucky spin (from 50 to 100,000 points!)
β
Token airdrop based on secondary point balance
β
3-level referral: 10% - 2% - 1%β
No more tiny returns! Start BIG with just $39!β
Sign up now:
https://6thseason.mexcompany.org/register
Join our Telegram Channel:
https://t.me/mexcompany6th
Start now β Your profitable journey begins today!β‘οΈππ°
1 262
π₯β¨ Ready to transform your financial future?!
β¨π₯Welcome to a world of profit, luck, and real investment powerβ
MEXCOMPANY
A trusted platform with 6 years of success and over 40,000 happy users βStart investing from just $39!β
Why MEX is a game-changer:
β
1%β5% daily profit
β
Compound interest with reinvestment β»οΈ
β
Pay with 33 cryptocurrencies
β
Withdraw in 12 major stablecoins (USDT, USDC, etc.)
β
Withdraw up to $1000 per day
β
Extra income based on your active points
β
Daily lucky spin (from 50 to 100,000 points!)
β
Token airdrop based on secondary point balance
β
3-level referral: 10% - 2% - 1%β
No more tiny returns! Start BIG with just $39!β
Sign up now:
https://6thseason.mexcompany.org/register
Join our Telegram Channel:
https://t.me/mexcompany6th
Start now β Your profitable journey begins today!β‘οΈππ°
1 262
α₯αα³α α α΅αα³α€ α αα α α°αα α α°α¨α³α½α ααα«α α αα ααααα½α
1 262
When someone mentions on LinkedIn "I finally landed my dream job", they miss to tell you about
Let's think about it step by step.
Why Do You Need a Job?
Before jumping into any career path, ask yourself:
β€ Why do I need a job?
Is it for financial stability?
Personal growth?
A sense of purpose?
Jobs can provide structure, income, and learning opportunities. But they are not the only way to achieve these goals. Clarity on your "why" will help you make smarter decisions.
What if the market is not in your favor, which it is right now?
The job market is unpredictable. Recessions, layoffs, and industry shifts happen. So, what's your backup plan?
Here are some alternatives:
Freelancing: Offer your skills to clients worldwide. Platforms like Upwork or Fiverr make this easier than ever.
Starting a Side Hustle: Turn hobbies into income. Think tutoring, content creation, or selling digital products.
Remote Work: Explore temporary or part-time remote jobs to stay flexible while earning.
Your job shouldn't be your only source of income. Think of ways to diversify.
How Can You Acquire More Skills to Turn the Tables?
If the market isn't working for you, invest in yourself.
β€ Here's how:
Take Online Courses: Platforms like Coursera or Udemy offer affordable courses in trending fields.
Network: Attend webinars, join LinkedIn groups, and connect with industry leaders.
Experiment: Take on small projects outside your comfort zone to build confidence and expertise.
Every new skill adds value to your profile and opens new opportunities.
Look for jobs that offer more than a paycheck
A great job isn't just about money.
β€ It's about:
Learning: Does the role teach you something new?
Growth: Will it help you progress in your career?
Stability: Does it offer financial and mental security?
If a job doesn't check these boxes, it might be time to reassess.
Hustle, but avoid toxicity
β€ Hard work is essential, but remember:
Hustle is healthy; toxicity is not.
Your mental health and well-being are non-negotiable.
Walk away from environments that drain you. Success should feel empowering, not exhausting.
So,
Build multiple income streams.
Keep growing and learning.
Prioritize your happiness and health.
So, what's your next step? Are you building skills, exploring alternatives, or rethinking your path? Tell me in the comments below!
1 262
Repost from Dagmawi Babi
Was talking to Emre and yeah A2SV is staying and the issues are resolving. There's still an issue of funding but he's very hopeful about it now. We won :)
I'm super glad and I'm happy for all the present and future A2SVians. This's wonderful news. Thank you everyone that supported, shared and encouraged this. β€οΈ
1 262
Repost from Information Systems Hub π»π
π¨ Calling All Problem Solvers! π¨
π«΅Are you an Information Systems student ready to level up your coding game?
Do you want to master Data Structures & Algorithms, ace technical interviews, and compete like a pro?
Welcome to the IS Leetcoders Team
A focused, high-energy problem-solving squad on a mission to:
π Build solid foundations in Data Structures and Algorithms
Sharpen algorithmic thinking
Get prepped for competitive programming
Dominate technical interviews
This is not your average coding group. This is a 3-month intensive sprint designed to push you beyond your limits and bring out the best version of your tech self.
Whether you're a beginner or already solving medium-level LeetCode questions, this is your chance to learn, grow, and win β together.
π Ready to join the movement?
Fill out the form below and be part of something bigger.
πhttps://docs.google.com/forms/d/e/1FAIpQLSec-71-aSI6SQbj0lgsq8CFJRsNLj4IiQMz30725N_ZBvXIaw/viewform?usp=sharing
π’ Spots are limited β so donβt wait.
1 262
I HAVE INTERVIEWED ON A2SV ON THURSDAY AND THE QUESTION WAS
/*
Question Description
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);
}1 262
Question Description
You are given a 0-indexed string s consisting of only lowercase English letters. Return the number of substrings in s that begin and end with the same character.
A substring is a contiguous non-empty sequence of characters within a string.
Example 1:
Input: s = "abcba" #"a", "b", "c", "b","a",abcba","bcb" a:2 b:2 c : 1
Output: 7
Explanation:
The substrings of length 1 that start and end with the same letter are: "a", "b", "c", "b", and "a".
The substring of length 3 that starts and ends with the same letter is: "bcb".
The substring of length 5 that starts and ends with the same letter is: "abcba".
Example 2:
Input: s = "abacad"
Output: 9
Explanation:
The substrings of length 1 that start and end with the same letter are: "a", "b", "a", "c", "a", and "d".
The substrings of length 3 that start and end with the same letter are: "aba" and "aca".
The substring of length 5 that starts and ends with the same letter is: "abaca".
Example 3:
Input: s = "a"
Output: 1
Explanation:
The substring of length 1 that starts and ends with the same letter is: "a".
Constraints:
1 <= s.length <= 105
s consists only of lowercase English letters
1 262
Repost from Codeforces Official
Educational Codeforces Round 177
(rated for Div. 2) starts on the 3rd of April at 14:35 UTC.
Please, join by the link https://codeforces.com/contests/2086
1 262
If anyone has questions or is interviewed by A2SV today, please share the questions with me. I'll post them in this channel!
@zprogramming_bot
