Posts

Showing posts from September 21, 2025
LeetCode practice builds problem-solving muscles, but interviews are about communicating your thinking in real time and showing that you can adapt when constraints shift. That’s why the same problems that feel trivial alone at your desk can suddenly feel like walls in front of an interviewer. Here are the big gaps you’ve already noticed (and they’re spot on): Thinking out loud: Interviewers want to see your reasoning, not just your final code. Handling changes: They’ll often tweak constraints to test flexibility. Pattern recognition: Spotting whether a problem is, say, sliding window, two-pointer, or DP in disguise. Under-pressure optimization: Interview timing forces you to balance brute force vs. efficient solutions fast. That’s exactly why mock interviews (with peers, mentors, or tools like Leeco AI you mentioned) are so valuable — they recreate the pressure + interaction dynamic that pure grinding doesn’t. suggestions: Don’t stop solving problems, but fr...

56.Remove string 2 froM String 1

Image
Problem of the Day: Given two Strings s1 and s2, remove all the characters from s1 which is present in s2. Input: s1=”expErIence” s2="E" output: s1=”exprIece” Input: s1 = "Programming" s2 = "P" Output: rogramming

55.Print NOT palindrome Strings

Image
Problem of the Day: From the input sentence given, find the strings which are not palindrome and print it. Input: he knows malayalam Output: he knows Input 2: Input: a b c abc cba Output: abc cba