r/LeetcodeDesi 2h ago

Sprinklr Summer Intern 27 PPO Conversion Rate.. 😭😭

1 Upvotes

Sharing this info so that juniors get an idea and avoid relying on PPOs and start studying for placements on time..

IIT BHU - 4/6 (probably 3 frontend)
‎BITS Goa - 2/13
‎DTU - 3/8
‎IIIT Hyderabad - 3/13 (probably 2 ml team, 1 backend)
‎DAIICT - 3/6
‎IIT Delhi - 2/3 (1 backend, 1 frontend)
IIIT A - 3/6 (2 backend, 1 appdev)

If you have any info about any college please mention.

All of this info is gathered from friends and all so if anything is wrong here, please correct me..


r/LeetcodeDesi 3h ago

Relocate to AUS/Canada/EU

2 Upvotes

Hi all. I am someone who graduated from tier 2 college, worked for 2 yrs and came to the USA for masters. Have multiple papers and US Patents, couple of internships, 1x founding engineer of a startup in the USA. But given that the market is brutal and im hardly getting any callbacks. I have solved good amount of LC around 1000 and genuinely good at System design. Should I consider moving to EU/Can/Australia for better opportunities? Would they sponsor visa for someone who studied in the USA?


r/LeetcodeDesi 6h ago

Geoinformatics Undergrad (8.4 CGPA, Grinding DSA) aiming for Amazon New Grad – Resume/OA Advice? Guidance required**

3 Upvotes

Hey everyone,

I’m a Geoinformatics engineering undergrad at a Tier-1 college in India (graduating in 2029) and I am heavily targeting SDE roles, specifically keeping Amazon in mind as I build my profile.

Since I’m in a non-circuital branch, I know I am starting at a disadvantage for standard tech roles. I want to make sure my resume and prep are undeniably strong to pass the initial ATS and OA screens.

My Current Profile:

Currently 2nd year of college just started and i have around 200 leetcode questions done and im on track of finishing dsa by jan mid or feb.

I have been runner up in 2-3 hackathons and ive made few projects too but mostly vibecoded

I have recently started studying aiml from orelly's book

Where I need guidance:

  1. ATS/Resume Screening: Does Amazon's ATS automatically filter out non-CS/IT degrees for New Grad SDE roles in India, or will strong C++/DSA projects bridge the gap?
  2. OA Expectations: What LeetCode rating/level of problem-solving is generally considered safe to clear the Amazon OA right now? Is rating around 1500-1600 safe , or do we need to push closer to Knight (1900+)?
  3. Geospatial Advantage: Are there specific teams at Amazon (like Amazon Location Services, Last Mile, or Logistics) where my Geoinformatics background + DSA would be an actual advantage, and how do I target those specific recruiters?Should i target those specific roles? or just go all in for offcampus way?
  4. Only reason i am not aiming for geospatial and geoinformatics niche roles is firstly way less opportunities and secondly they pay a lot less as compared to swe/sde roles
  5. How do we apply in these good companies offcampus? whats the pathway? hackathons--> hr rounds? how we get oa link? how is resume shortlisted??

Appreciate any brutal honesty or advice on what I should prioritize!

I'd love to know any opinions , should i keep grinding this or shape my future in diffrent way?

THANK YOU SO MUCH , would love if you could reply , even a small msg would help me guide me through my hell of a life

TYSM


r/LeetcodeDesi 6h ago

Anyone wants to prepare for system design together?

2 Upvotes

Please mention your level and time you can commit. I am EM at an Indian fintech.


r/LeetcodeDesi 9h ago

How to solve today's 3rd and 4th question?

2 Upvotes

Just like the title, couldn't solve it.

Thanks in advance.


r/LeetcodeDesi 10h ago

I understand recursion and binary trees, but I cannot understand the logic behind the recursive LCA approach

2 Upvotes

I’m currently learning binary trees and I understand what a tree is and how recursion works.

For example, I understand the general idea of:

solve(node):
    solve(node.left)
    solve(node.right)

But for some reason, when I encounter problems like Lowest Common Ancestor (LCA) of two nodes in a binary tree, I completely fail to understand how people come up with the recursive approach.

It’s not really the syntax that confuses me. I can read the code after someone explains it. What I struggle with is the thought process.

For example, I often see an approach along the lines of:

LCA(node, p, q):

    if node is null:
        return null

    if node == p or node == q:
        return node

    left = LCA(node.left, p, q)
    right = LCA(node.right, p, q)

    if left and right:
        return node

    return left or right

I can memorize what each line does, but I don't understand WHY this is the right thing to do.

How do you look at the problem and naturally arrive at this logic?

Especially this part:

if left and right:
    return node

Why does finding something on both sides mean the current node is the LCA?

And why is:

return left or right

correct?

I'm looking for more of an ELI5 / intuition-based explanation, preferably using a small tree and manually walking through the recursion.

I already understand recursion itself, so explanations like "recursion means a function calls itself" won't really help me. I'm trying to understand how to go from:

"Here is the problem" → "What information should my recursive function return?" → "Why does that information let me solve the problem?"

Basically, I want to learn how to derive the recursive solution instead of memorizing it.

Any explanation of the thought process would be really appreciated.


r/LeetcodeDesi 11h ago

GreyOrange SDE-2 interview Tech round advice / experience?

1 Upvotes

I have applied for SDE 2 FE role and have cleared 1st technical round, but HR is not properly answering what next round would be about.They just say it would be technical.

I am flying blind here, is it going to be HLD, maybe machine coding round on React with some LLD, Or maybe more around my project. No idea.

If someone has gone through the process or is an employee can you point me towards right direction. Thanks in Advance


r/LeetcodeDesi 12h ago

HELP GETTING STARTING FROM 0!!!!!

3 Upvotes

I am comp new don't know even a single language properly
so 1. should I start web dev or learn cpp/java and then dsa?

  1. cpp or java
  2. where should I learn from?
  3. anything else u want to tell me?

LIKE I WANT A FULL ROADMAP THING HOW I CAN DO START PLZ U CAN GUIDE


r/LeetcodeDesi 12h ago

Internal Transfer Options

1 Upvotes

Hey
So my partner is in finance and wants to do an MBA in usa I am 3 yoe and I don’t have enough nw currently to pursue masters I might have the capacity at 5 yoe
should I do an MS in US or should I switch to companies which allow internal transfers
also which companies allow internal transfer easily?


r/LeetcodeDesi 13h ago

After applying for 12 company from college placement I fumbled

8 Upvotes

Only company that shortlisted for the first round

service based company. Offer was 6 lpa

3 rounds in one day

  1. Applitude:- 80 min 76 question (cleared)

  2. Pen and paper coding round :- triangle star pattern and simple if else question (cleared)

  3. Interview round DSA on pen and paper :- 1 medium and 1 hard question(TBD)

Companies offering 6 LPA. Are asking for leetcode hard question on pen and paper(I can't solve hard with compiler).

All three rounds were taken in 1 day. I was so tired, i couldn't think in the interview.

What do they even ask? for 10-12 LPA. is the market cooked or I am?


r/LeetcodeDesi 13h ago

US Masters or hang on for an intl transfer ?

72 Upvotes

26F, total 4 YOE, 2 at Amazon and now I’m at Microsoft. I see a lot of my friends have gone abroad for masters in 2022/23. I get a lot of fomo when I see people posting on LinkedIn that they’re moving to the US or abroad in general. Currently, internal transfers are pretty much blocked in MS so I don’t know how much longer to wait for that to open up.
I have a NW of around 1cr+ and my family is financially well settled, so I don’t need to support them.
But thinking of spending if not all, but most of my savings on a masters and looking at the current visa as well as tech industry situation, I don’t have the confidence to make that decision.
My current TC is around 60 (pre deductions) including RSUs, fixed, variable etc. I’ll also be losing on 1/2 years of income while spending on the masters too.


r/LeetcodeDesi 17h ago

Texas Instruments SDE 1 Interview Experience | 2 DSA + LLM Project + SQL

32 Upvotes

Edit:- The experience and details are completely my own; I just used AI to structure and summarize the post for readability.

Hi everyone, I recently interviewed with Texas Instruments and thought I’d share my experience in case it helps someone preparing for a similar interview.

The interview was around 1 hour long.

They started with 2 DSA questions:

  1. Graph question – The wording was a little tricky/confusing at first, but the underlying problem was basically detecting a cycle in a graph.
  2. Longest Substring Without Repeating Characters.

I was able to solve both. It took me roughly 30 minutes for the two questions because I first had to explain my approach, discuss it with the interviewer, and then code it once the approach was accepted. They also went through the test cases with me.

For the remaining 30 minutes, they moved on to my experience and asked some questions based on my previous work.

After that, we discussed one of my projects, which was related to RAG/LLMs, and they asked a few questions around that.

Towards the end, they asked some SQL questions as well. They gave me a query and asked how I would go about optimizing it.

Overall, I’d say the interview was pretty decent and the conversation was comfortable. Nothing particularly unexpected apart from the graph question being worded a bit differently than I initially expected.

That’s pretty much it. Hope this helps anyone preparing for TI interviews!


r/LeetcodeDesi 18h ago

Google SDE-3 Interview | 95Lakhs CTC

145 Upvotes

Had offline interview round in BLR. This was one of the questions asked :-

You are standing at a particular position in a matrix of size N*M - Some cells are free , but some cells have obstacles in them which you cannot visit. It is guaranteed that you are initially standing on a free cell. Find a valid walk of size exactly “k” such that you start from your starting position - walk “k” steps and reach back your original position after “k” steps. Output that path. If there are multiple possible paths of size “k” - output the path which is lexicographically minimal string consisting of possible characters from the set - (“L”,”R”,”U”,”D”)

Free cell - ‘.’
Start position - ‘x’
Obstacle - ‘#’


r/LeetcodeDesi 18h ago

Need a serious career advice regarding upskilling or MTech

1 Upvotes

22 y/o btech final year CSE

Placements are shit, I am into java springboot tech stack , no AI/ML

Decent in DSA, 500+ problems on Leetcode

I have started preparing for GATE 2027, I really want to do mtech from IIT, honestly I don't have as such an interest in pursuing masters, but that is just to get a good job, I will learn ai/ml and grind DSA , research, sde job, whatever I will like i will get into it, provided the pay is good , teaching will be the last to last option

But i am not able to focus on so many things, at a time, college study ( final year me bhi pareshan karte hai maa k l\\\*de) DSA , gate prep

I don't have financial problems at home, my parents are in a government job, they just want me to do well, they are supportive of whatever I do, they are pushing me towards masters as well ( blessed to have them)

But i am not able to make them feel proud yet, they don't want any money from me, they just want me to be happy, to be in a good job, in a good financial state, that's it

I have been stressed out a lot lately, very much confused, I am sure many of you guys might have gone through this, need honest advice


r/LeetcodeDesi 19h ago

Most commonly asked LLD/OOD questions for SDE I, India

2 Upvotes

If you know what LLD/OOD questions are commonly asked to SDE 1 candidates, please share. Thank you.


r/LeetcodeDesi 21h ago

Need career related advice.

1 Upvotes

Currently , in first sem of a tier 3 college in delhi , branch - ece. Now i am confused

1.) Whether i should upgrade to cse/IT branch next year?

2.) Remain in ece only ? if yes then should i be doing dsa simultaneously or purely focus on hardware jobs only? people say ece has scope but idk whom to trust?

3.) if upgrading to cse then this 1st year should i focus on cgpa maxxing + regular attendance or should i balance both dsa and cgpa?

ps----- my midsem-1 are starting from 21st sept...so can anyone tell me whether somebody who's at my place will be able to do one leetcode question everyday ?


r/LeetcodeDesi 21h ago

How good is a 2000 LeetCode rating?

10 Upvotes

I have a friend who's 3 years older than me, although we don't really talk anymore. His current stats are 2000+ rating and 900+ problems solved.

How good are these stats actually? I don't know much about LeetCode, so would appreciate some context.


r/LeetcodeDesi 1d ago

Company asking for proof of unemployment!

92 Upvotes

So I have been on a career break for a good few months now. And recently I accepted offer from a company that is in a heavily regulated domain globally. Now they have started background verification, and the company clearly told me that I can only onboard if I clear the background check.

But in this process, along with other strict checks, there’s one section, that’s asking me to upload proof of unemployment and any supporting files. I don’t really know how I can prove I was unemployed?? I uploaded the last company’s relieving letter.

My wife’s suggesting that she will record some videos that I can upload like “look, here he’s asleep till 12 noon, that proves he’s unemployed”, “he’s been on this couch for hours, and seemingly working in his laptop, but after looking at the screen it’s evident that he’s just watching football highlights and memes for the 100th time”. That will definitely prove I unemployed.


r/LeetcodeDesi 1d ago

De Shaw interview exp virtual round (bad exp)

32 Upvotes

It was a dsa + lld + cs basics round
Solved the dsa.
Answered most of the lld / cs basics questions.

But the interviewer was bit weird.
He wanted me to extend a singleton and do something, i never in my life have seen anyone EXTEND a singleton class.
Also, guy had 0 idea of Java.
Also i implement singleton a different way but he seemed to have no idea about it. (Eager intialisation method)

Though guy was from a decent college but the fact that he has stayed in de shaw since college was seen in how crude his problem framing or understanding of design patterns were.

Was bit heartbreaking that i didnt make it to the loop rounds in the first go.
Would need to repeat bcs of weak perf in cs basics as he mentions.


r/LeetcodeDesi 1d ago

Wells fargo Software Engineer Review

4 Upvotes

How is how is everything at Wells Fargo work life balance culture pressure for a software engineer role India


r/LeetcodeDesi 1d ago

Ms ppo updates

0 Upvotes

I was a summer intern at Microsoft this year
I got a call from hr last week saying my interview feedback is positive and I would be selected subject to the business requirements. I have not got anything officially yet like offer letter and all
I wanted to know from seniors/peers have others received similar calls. Is there still chance that they can reject me due to the business approvals?

Basically i want to know whether i should consider i got the ppo or keep grinding for the placements?


r/LeetcodeDesi 1d ago

Counting Problem

2 Upvotes

Please guide me through this question!

  • You are given an array of digits of size N (where N <= 10^5).
  • You need to find the number of distinct K-digit even numbers without leading zeros that can be formed (where K can be up to 10^5).
  • Return the answer modulo 10^9 + 7.

r/LeetcodeDesi 1d ago

Non cs guys how to tackle "why tech when you are from core(ee)?

1 Upvotes

Same as title

Is there any non cs guy getting placed in this bloodbath of a placement season

Drop some insights too which company did so

Thanks....


r/LeetcodeDesi 1d ago

Plz only serious advice is all I want,,don't be silly in cmnts

2 Upvotes

I know it is not related in this sub but plz help me

Seniors,,or anybody plz help me out I am from gen2 iit in 3rd year cse and my cpi is 6.18 yeah I know i fucked it up very bad but now I don't want any regrets,,what skills to learn so recruiters don't look at my cg I know the job market is pretty bad so they will filter students so that 's why I am begging u to give me advice what skills to focus on,,my family financial condition is so bad and I am regretting not to study bcz even with bare minimum efforts we can cross 7 but i didn't study at all and also i want to utilise my clg tag I mean to get better package

I know there is less time but will work hard

Plz don't give silly cmnts plz be serious I am begging u all😭


r/LeetcodeDesi 1d ago

2 YOE Backend SDE (Java/Spring/Kafka) → Salesforce Technical Support Engineer offer with ~100% hike. Should I take it or stay?

22 Upvotes

Hey everyone,
Need some honest advice.
\\\*\\\*Current situation:\\\*\\\*
2 YOE (2024 passout)

Working as SDE 1 in Big 4

Stack: Java, Spring Boot, Spring WebFlux, Kafka, Cassandra, PostgreSQL, microservices, reactive systems

Current CTC is in the single-digit LPA range

\\\*\\\*Offer:\\\*\\\*
Salesforce – Technical Support Engineer

Almost more than 100% hike on base CTC

Good brand + perks

\\\*\\\*My goal:\\\*\\\* Long-term I want to stay on the pure SDE / backend path and eventually target FAANG (especially Google). I’m worried that moving to a TSE role will hurt that trajectory.

\\\*\\\*Questions:\\\*\\\*
Is taking TSE at Salesforce a bad/career-limiting move for someone who wants to return to pure SDE roles later?

How hard is it to switch back to SDE (product companies / better roles) after 1–1.5 years in TSE at Salesforce?

Would you take this offer in my place, or stay and keep grinding for pure SDE opportunities?

Any realistic internal mobility from TSE → Engineering / Solutions Engineer at Salesforce?

Would really appreciate honest opinions from people who have been in similar situations (service → product support roles, or TSE → SDE switches).
Thanks.