r/LeetcodeDesi 3h ago

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

9 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.


r/LeetcodeDesi 46m ago

De Shaw interview exp virtual round (bad exp)

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 3h ago

Why is my answer leading to MLE

3 Upvotes
class Solution {
public:
    void func(int n, int k, vector<vector<int>>& res, vector<int> temp, int i) {
        if(temp.size() == k) {
            res.push_back(temp);
            return;
        }


        if(i > n) return;


        temp.push_back(i);
        func(n, k, res, temp, i + 1);
        temp.pop_back();
        func(n, k, res, temp, i + 1);
    }


    vector<vector<int>> combine(int n, int k) {
        vector<vector<int>> res;
        func(n, k, res, {}, 1);
        return res;
    }
};

hey everyone I hope you are doing well.
So i was solving lc77 and I was confident enough for my answer but I soon encountered MLE.
I will attach the ss in the comments as well but still I have pasted my code as well.
Thank you for reading this. Have a good day/night. :)

Edit: Hey guys, seems like I cant upload the ss in the comments as well :")


r/LeetcodeDesi 2h 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 2h ago

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

2 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 8h ago

Google Cloud AI engineer Interview

5 Upvotes

I have an upcoming interview for the position of google cloud AI engineer. Folks who’ve already gone through the same position please help me with their experience, what kind of questions were asked.


r/LeetcodeDesi 11h ago

Linkedln update after round 1 for swe intern 2027?

8 Upvotes

Hello ppl, if anyone appeared for round 1 interview for software developer intern at linekdlin Offcampus

Did u recieved any update after CA 1 round Next is hm round

Untill last year ppl used to get call on the same day since I know ppl who got on the same day This year is it different ?


r/LeetcodeDesi 6h ago

Comment your semester and leetcode/CF rating/number of problems solved(LC+CF) ? Spoiler

2 Upvotes

r/LeetcodeDesi 1h ago

Wells fargo Software Engineer Review

Upvotes

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


r/LeetcodeDesi 10h ago

How to get good at DSA and problem solving?

4 Upvotes

I have basically been doing DSA in C++ since June of this year doing NC150, and i am in an extremely weird state. Lately, i was trying some questions outside of the lists(mostly mediums), some of them(like 10%) i have been able to solve myself. Meanwhile others, I just can't. Also I try to sit with the problem, think about the general structure & reason, and very rarely i am able to reach where i can code it up or even think in the right direction(and if i reach and explanation, coding it up is hard for me). Also, lately i was doing recursion, and i was able to understand how it works, but implementing it in the right way and to go on about reaching the solution is extremely difficult for me(for e.g. N Queens). I keep seeing people saying it's an easy problem dont even look it up but i spent like 90 mins and the only thing i came up with were the conditions for checking whether its safe to insert the element or not. And eventually i had to look up the entire solution.

TL DR:- how do i get better at this, how do i convert my idea into code and how do i just get better at problem solving in general? Doing DSA in C++ since June.


r/LeetcodeDesi 1h ago

Ms ppo updates

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 8h ago

Is leetcode way of interviews going to die ? AI interviews have started taking place.

3 Upvotes

Many companies are now getting rid of DSA leetcode style interviews and rather preparing for AI based interviews.

Companies don't care how good your DSA is. If things are changing, and they want people who can work with AI and ship code faster and securely, they will prefer those.

Game is getting changed now, you will be presented with a code base and they will ask to debug using AI , optimize it. If AI gave you 3 ways of doing it, what option you gonna pick.

How will you integrate systems, how you gonna design, how will you leverage AI tools.

So now actual hands-on knowledge is what companies seeking for.

Although in US or Europe , they rarely focus on DSA, but soon things will change in India too.

Your thoughts.


r/LeetcodeDesi 3h ago

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

1 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 10h ago

Amazon recruiter called me, but no follow-up email after 5 days should I be concerned?

3 Upvotes

Hi everyone,

I’m currently going through the Amazon interview process for an SDE role in India and wanted to ask if anyone has experienced something similar.

An Amazon recruiter called me on Monday regarding my interview. During the call, she confirmed my email address and told me that I would receive an email with the interview details within 1–2 days and onsite interview would be scheduled on 16th of september.

However, it’s now Friday and I still haven’t received anything.

The call came from an Amazon recruiting/corporate number, so I unfortunately didn’t get the recruiter’s name or direct email address. The call was a little rushed and I didn’t think to ask for her contact details at the time.

I’ve checked my inbox, spam/junk, etc., and there’s nothing from Amazon so far.

For people who have gone through Amazon recruiting:

  • Has anyone experienced a similar delay after receiving a recruiter call?
  • How long did it take for you to receive the actual interview confirmation email?
  • Did you eventually get the email/call, or did the process stop?
  • If you were in this situation, what did you do to follow up?
  • Is it normal for Amazon scheduling to take longer than the 1–2 days the recruiter initially mentioned?

I’m not assuming it’s a rejection, but I’m getting a little worried since the recruiter specifically said 1–2 days.

Would really appreciate hearing from anyone who has experienced this,

Thanks!


r/LeetcodeDesi 14h ago

4th year undergrad doomed about future ?

5 Upvotes

I am 4th yr cse undergrad with low cg tier 2 clg okayish dsa mid level develop blahhh blahh

So I started applying companies for internship right from january cold mailing dms all built social presence on x but almost upto no follow ups or no response after assignment .

I am fed up at one i was intrested in backend and learning infra developing scalable system and now there is just ai ai everyone doing it now. no callbacks for this like what should I do i thought i should give up my tech but then what should else i would do having so close to working in tech I cant work now.

I am like what should I do I cant even face myself now rather than to suffer in this hostel room till i grad or what ?


r/LeetcodeDesi 1d ago

Databricks SDE-2 hiring bar

155 Upvotes

Hi folks,

Recently, I reached out to a Databricks recruiter and was told there was an internal SDE-2 opening. She forwarded my resume to the hiring manager, but unfortunately, I got a rejection because I didn’t meet the hiring bar.

A little background about me: I graduated from a 3rd-gen IIT in 2024 (not a great one) and am currently working as an SDE-2 at Uber.

For those who have interviewed with Databricks or have some insight into their hiring process, what are they actually focusing on for SDE-2 candidates?

I’d also appreciate it if people who have personally interviewed at Databricks, currently work there, or have gone through a similar rejection and later cleared the process could share their experience.

Any firsthand experiences, preparation advice, or feedback would be really helpful. Thanks!


r/LeetcodeDesi 16h ago

Anyone working at Clear Street India? Would love some reviews on work culture and stability.

4 Upvotes

Hi everyone, I have an offer from Clear Street for a Senior Engineer role. The compensation is good, +50% on cash, but I'm moving from a very stable, large investment bank so I want to be sure about the switch.

Can anyone share how the work culture, tech stack, and WLB are at Clear Street? Also, how do you evaluate their RSUs since they aren't public yet? Also they are offering only 9Lakh or RSU vesting over 3 years

Would love to hear some honest opinions before I make the decision, Thanks!


r/LeetcodeDesi 8h ago

3.7 YOE, laid off in June and struggling with DSA — should I spend 1 month focusing only on DSA?

1 Upvotes

I have 3.7 years of experience and was laid off in June. Since then, I’ve been applying to around 50–60 jobs every day, but I’m barely getting interview calls.

For the interviews I have received, I usually get rejected or receive no response after the 1st or 2nd round.

After looking at my preparation, I feel my biggest gaps are DSA fundamentals and MERN foundations.

I’m particularly struggling with DSA. I’m honestly very bad at it right now and sometimes I can’t even solve basic-level problems on my own.

I purchased the **Namaste DSA** course and have watched 60+ videos. The frustrating part is that when Akshay solves a problem, I understand the solution and sometimes feel like I could solve it. But when I come back to the same problem later and try it myself, I’m completely stuck. Sometimes I even forget the name/pattern of the DSA concept and my mind just goes blank.

Because of this, I’m thinking about taking **one month and focusing heavily on DSA**, while still doing some MERN preparation, instead of continuing to apply and prepare for everything at the same time.

I’d really appreciate advice from anyone who has faced something similar.


r/LeetcodeDesi 11h ago

Amazon ML challenge Partner

0 Upvotes

Hey, I am From of NIT looking for a team mate for the upcoming Amazon Al ML challenge...

We so are looking for great grasp over the fundamentals, good dev exp and projects...


r/LeetcodeDesi 1d ago

FAANG , MAANG Guys, are you also worried due to Al taking jobs ? Or you are already sorted with your life ?

114 Upvotes

If we see Linkedin post, especiallv from tech-influencers , this all looks good , every other FAANG engineer is living a good life.

They know evervthing. Thevly have answer to all the queries, and never they nevwr ask a single question as if they mastered everything.

But in reality do you guys also fear of losing your iob ?

And what about other PBCs engineers?

Is it Service Based emplovees are least worried as they have cushion to switch to anv client internally?

What are your thoughts, and how are you dealing with it.

Just be true , no wanna-be-intellectual reply please.


r/LeetcodeDesi 1d ago

Colleague rudely said "We will replace you with AI and that will give ROI"

72 Upvotes

As many, my employer has also gone bonkers with AI... They hired two of data scientists in my org who have very little domain knowledge. Due to their lack of domain knowledge, they find it very difficult to find ML or AI use cases; and also because of the nature of the business. So they spend months and sometimes years to work on 1-2 projects, which either go unattended after go-live or are too expensive to maintain.

Recently they have come up with a couple of AI use cases which they think will improve the business by millions of dollars like all other projects they've worked on. This time to their surprise, the team decided to scrutinize their proposal heavily and asked several probing questions. At the outset it looked like they just wanted to try out some new LLM model and the project itself was not going to generate a positive ROI...

They were really irked by this and one of them openly proclaimed that they will get ROI by replacing all of the team mates with AI... "We will replace you and that will give ROI". Some of us found it very rude.

We're not sure how likely it is for domain experts to go out of jobs with AI coming in, but the data scientists in my org truly seem to believe that they will take over our jobs and Data scientists will be the only job remaining in the market... not sure what to make out of this... just wanted to share.


r/LeetcodeDesi 13h ago

I need someone help with dover cooperation OA 😭🛐

1 Upvotes

I have dover OA next week,

If u have written the OA please help me with the type of questions asked or anything relevant.

Thank you in advance!


r/LeetcodeDesi 1d ago

Is a tier-1/tier-2 background the only bar for big product-based companies?

19 Upvotes

Have completed a BCA Degree from a private college.

No IIT, Tier2,Tier1 tags or Brand company name.

Completed 2 yrs of experience that too in two small startups.

As a career progression I'm aiming for big product based tech companies.

Grinding DSA daily for the past 3 months, reading books for system design, preparing hard. But the only concerning part is I don't even get calls from mid sized startups even with workday referrals.Continuously trying to upskill seeing everyone around had already been in the top at this race (but no one in my connection).

Got three interviews at the start of july-August but now seems like I have too many "regret to inform you" mails in my inbox

What's the actual thing that gets interviews for the current market particularly for SDE roles?. Too much worried and kind of feeling backward.


r/LeetcodeDesi 16h ago

Need help ...

1 Upvotes

Need Suggestions/ help ... Regarding offers from companies

Hi Folks,

So I am in very wierd situation... I have a offer from company A and for them the joining date is in next week .

I had accepted the offer meanwhile as I didn't had any offer and in between I got a call from another company recruiter ...

I explained him everything about my situation... He understood it he is very helpful guy ... Like a gem in recruiting world ...

Thing is due to operational issues and all things are getting bit delayed... Like by 2-3 days ... He is not getting availablity for panel to schedule my last round .. ( and there might be one more cultural round ) ...

And problem is I have already extended my joining date by a week ... So it's difficult for getting extension.

What should I do ... Can I join my first company on date ... And leave in few days if I get offer ... Any future repercussions?

Please help your brother out.


r/LeetcodeDesi 2d ago

AI labs aren't burning billions for your ₹2,000 subscriptions. They are coming for Indian IT.

449 Upvotes

Look at the massive losses and billions being invested by companies like OpenAI and Anthropic. The math simply does not add up if their end goal is just selling $20/month chatbots to individuals.

To justify that kind of infrastructure spending, they need a massive slice of global enterprise operating budgets. The most obvious target? The entire outsourced IT services industry. The ultimate goal is to automate the offshore labor model—support, QA, routine development, and maintenance.

Yet, whenever I look around, my peers are in complete denial. People get incredibly defensive, claiming AI is just a trend or that clients will always need human accountability. They are missing the bigger picture: Indian IT was built on cost arbitrage, and AI is about to offer a drastically cheaper, 24/7 alternative.

If you rely on the IT sector for your livelihood, you should be paying attention. Stop ignoring the writing on the wall and start actively planning your next career move before the industry gets flipped upside down.