Daily
Today mid feels like easy. Solved in 2 mins, go and collect your coin.
https://leetcode.com/problems/sort-vowels-in-a-string/description/?envType=daily-question&envId=2025-09-11
#daily
Today mid feels like easy. Solved in 2 mins, go and collect your coin.
https://leetcode.com/problems/sort-vowels-in-a-string/description/?envType=daily-question&envId=2025-09-11
#daily
This media is not supported in your browser
VIEW IN TELEGRAM
Ahahhahah so accurate.
This is my CZ skill after 3.5 years here
This is my CZ skill after 3.5 years here
π4
Today's morning does not start with leetcode.
I have heard a lot of suggestions and questions about why I don't start/run startup, why keep working on corpo shit, being employee, have manager who tells you what to do, etc.
Here is why:
https://live.andreyka26.com/why-software-engineers-shouldnt-start-startups
I have heard a lot of suggestions and questions about why I don't start/run startup, why keep working on corpo shit, being employee, have manager who tells you what to do, etc.
Here is why:
https://live.andreyka26.com/why-software-engineers-shouldnt-start-startups
andreyka26 live
Why Software Engineers Shouldnβt Start Startups
I am Software Engineer at Microsoft. This is my live blog where I would like to share my thoughts that are not related to software engineering.
π₯5
Daily
OFC we are doing daily guys. Today daily is joke. Just think about possible cases, and realized that you don't need any simulation at all.
https://leetcode.com/problems/vowels-game-in-a-string/description/?envType=daily-question&envId=2025-09-12
#daily
OFC we are doing daily guys. Today daily is joke. Just think about possible cases, and realized that you don't need any simulation at all.
https://leetcode.com/problems/vowels-game-in-a-string/description/?envType=daily-question&envId=2025-09-12
#daily
LeetCode
Vowels Game in a String - LeetCode
Can you solve this real interview question? Vowels Game in a String - Alice and Bob are playing a game on a string.
You are given a string s, Alice and Bob will take turns playing the following game where Alice starts first:
* On Alice's turn, she hasβ¦
You are given a string s, Alice and Bob will take turns playing the following game where Alice starts first:
* On Alice's turn, she hasβ¦
Daily today
Trivial - go and collect the coin.
https://leetcode.com/problems/find-most-frequent-vowel-and-consonant/description/?envType=daily-question&envId=2025-09-13
#daily
Trivial - go and collect the coin.
https://leetcode.com/problems/find-most-frequent-vowel-and-consonant/description/?envType=daily-question&envId=2025-09-13
#daily
Daily
This problem I actually liked, first of all it at least a bit smells like real world problem. Second, not very hard, exactly for 30-40 mins
https://leetcode.com/problems/vowel-spellchecker/description/?envType=daily-question&envId=2025-09-14
#daily
This problem I actually liked, first of all it at least a bit smells like real world problem. Second, not very hard, exactly for 30-40 mins
https://leetcode.com/problems/vowel-spellchecker/description/?envType=daily-question&envId=2025-09-14
#daily
π1
andreyka26_se
Daily This problem I actually liked, first of all it at least a bit smells like real world problem. Second, not very hard, exactly for 30-40 mins https://leetcode.com/problems/vowel-spellchecker/description/?envType=daily-question&envId=2025-09-14 #daily
rephrasing question:
given list of words, and list of queries, return word per query using the following rules:
- if word is EXACTLY matched - return it
- if word is matched EXACTLY but case insensitive (w1.lower() == w2.lower()) -> return the first occurence from the word list. e.g. I have KiTy as query, and list [kITY, KiTY] - I should return kITY as it is the first.
- if word is matched both lowercase, but on the places of vowels there might be any other vowel (also return the first)
given list of words, and list of queries, return word per query using the following rules:
- if word is EXACTLY matched - return it
- if word is matched EXACTLY but case insensitive (w1.lower() == w2.lower()) -> return the first occurence from the word list. e.g. I have KiTy as query, and list [kITY, KiTY] - I should return kITY as it is the first.
- if word is matched both lowercase, but on the places of vowels there might be any other vowel (also return the first)
β€1
Daily
Easy, one minute problem - go and collect the coin
https://leetcode.com/problems/maximum-number-of-words-you-can-type/description/?envType=daily-question&envId=2025-09-15
#daily
Easy, one minute problem - go and collect the coin
https://leetcode.com/problems/maximum-number-of-words-you-can-type/description/?envType=daily-question&envId=2025-09-15
#daily
β€1π₯1
Daily
Easier than hard if you know the formulas and coecistance of least common multiple (LCM) and greates common divisor (GCD).
https://leetcode.com/problems/replace-non-coprime-numbers-in-array/description/?envType=daily-question&envId=2025-09-16
#daily
Easier than hard if you know the formulas and coecistance of least common multiple (LCM) and greates common divisor (GCD).
https://leetcode.com/problems/replace-non-coprime-numbers-in-array/description/?envType=daily-question&envId=2025-09-16
#daily
Daily
Today is a bit late, was having students for system design.
I liked today's daily a lot. Small hint - think of something like lazy loading + MVCC in postgres, it will lead you to a correct answer.
https://leetcode.com/problems/design-a-food-rating-system/description/?envType=daily-question&envId=2025-09-17
Today is a bit late, was having students for system design.
I liked today's daily a lot. Small hint - think of something like lazy loading + MVCC in postgres, it will lead you to a correct answer.
https://leetcode.com/problems/design-a-food-rating-system/description/?envType=daily-question&envId=2025-09-17
I found system design question, that does not have solutions on the open internet. If you are looking for a challenge in system design - try designing "Virtual waiting room" aka "Virtual waiting queue".
https://www.cloudflare.com/en-gb/application-services/products/waiting-room/
This is the "clever" FIFO sticky rate limiter that is needed for example in case of ticketmaster for Taylor Swift traffic spike (14M req per sec).
How it works: it handles all 14M requests, and in FIFO manner it lets the first users to start booking, but still allowing only static amount of users to book (let's say 20k) simultaneously. While you are in queue your position and how many people before you are shown on the page. Once it is your turn - the page will load ticketmaster seat selection map.
How would you do it?
https://www.cloudflare.com/en-gb/application-services/products/waiting-room/
This is the "clever" FIFO sticky rate limiter that is needed for example in case of ticketmaster for Taylor Swift traffic spike (14M req per sec).
How it works: it handles all 14M requests, and in FIFO manner it lets the first users to start booking, but still allowing only static amount of users to book (let's say 20k) simultaneously. While you are in queue your position and how many people before you are shown on the page. Once it is your turn - the page will load ticketmaster seat selection map.
How would you do it?
Cloudflare
Cloudflare Waiting Room | Virtual waiting rooms | Cloudflare
Cloudflare Waiting Room lets you direct users to a custom-branded virtual 'waiting roomβ during traffic surges, improving their experience while they wait.
β€7
Daily
Pretty similar question to yesterday's. Learning how we can use "soft deletion" to make better complexity
https://leetcode.com/problems/design-task-manager/description/?envType=daily-question&envId=2025-09-18
#daily
Pretty similar question to yesterday's. Learning how we can use "soft deletion" to make better complexity
https://leetcode.com/problems/design-task-manager/description/?envType=daily-question&envId=2025-09-18
#daily
Daily
Easy. Just 1 timesaver: better to use map instead of array
https://leetcode.com/problems/design-spreadsheet/description/?envType=daily-question&envId=2025-09-19
#daily
Easy. Just 1 timesaver: better to use map instead of array
https://leetcode.com/problems/design-spreadsheet/description/?envType=daily-question&envId=2025-09-19
#daily
π₯2
Daily
The actual problem is quite interesting and tests different datastructures.
Also fucking constraints are misleading (I will explain in the solution)
https://leetcode.com/problems/implement-router/description/?envType=daily-question&envId=2025-09-20
However I believe that the amount of code produced here matches rather hard problem.
#daily
The actual problem is quite interesting and tests different datastructures.
Also fucking constraints are misleading (I will explain in the solution)
https://leetcode.com/problems/implement-router/description/?envType=daily-question&envId=2025-09-20
However I believe that the amount of code produced here matches rather hard problem.
#daily
π4