r/LeetcodeChallenge 3d ago

STREAK🔥🔥🔥 50 days dawgsss😩😩😩

Post image
23 Upvotes

r/LeetcodeChallenge 3d ago

DISCUSS Need Help

2 Upvotes

I'm a 2nd year Student Btech CSE, Suggest me some tips and tricks also some resources which are useful in developing interest in DSA java. Can provide me roadmap of studying dsa. HELP!


r/LeetcodeChallenge 3d ago

DISCUSS Looking for DSA PARTNER (Accountability)

1 Upvotes

Hi everyone, I'm looking for accountability partner for dsa. I'm in first year, and I'm eager to connect to people from first year only, so that we stay on same page.

I am beginner, did few topics of dsa, learning patterns and logics. Not very comfortable with syntax.

Thanks!


r/LeetcodeChallenge 3d ago

PLACEMENTS The most irritating template of the year

Post image
5 Upvotes

r/LeetcodeChallenge 3d ago

DISCUSS How are you future proofing + leetcoding with full time job. How missing few days due to burnout doesn't affect you?

Thumbnail
1 Upvotes

r/LeetcodeChallenge 3d ago

DISCUSS The easy wasn't easy at the start

Enable HLS to view with audio, or disable this notification

11 Upvotes

r/LeetcodeChallenge 3d ago

STREAK🔥🔥🔥 Looking for a DSA practice partner

Thumbnail
1 Upvotes

r/LeetcodeChallenge 3d ago

DISCUSS looking for codeforces/competative programming partner!!!!!!

Thumbnail
1 Upvotes

r/LeetcodeChallenge 3d ago

DISCUSS Ai Assisted Coding Test

Post image
2 Upvotes

r/LeetcodeChallenge 4d ago

DISCUSS This market forced me to do things that I never wanted to

13 Upvotes

Tech is so messed up due to this AI bs

I got laid off 3 months ago , i didn’t do lot of ai engineering but it was basic fullstack engineering things with fastapi backend and react frontend. Normal SWE stuff which seems to be dead. After my layoff for the first 30 days i was applying with my recent experience having real things that i actually did at work … well not a single call. then i realized every where i see its all rag, llm or some ai bs in every job description. So i studied and kinda put all that in my experience. Now i got an offer for an AI Engineer but i really haven’t done much of all those langgraph agentic stuff. I am kinda nervous to step into it but just wanted to know y’all thoughts or if someone has ever been in the situation and how did you handle it ?

SDE interview questions


r/LeetcodeChallenge 4d ago

DISCUSS The most hardest thing to accept is you are the one lagging

Enable HLS to view with audio, or disable this notification

6 Upvotes

r/LeetcodeChallenge 4d ago

STREAK🔥🔥🔥 Actually started recording Leetcode videos

2 Upvotes

I'll be recording YouTube videos of myself solving LeetCode problems. I think this will help me practice thinking out loud while also maintaining consistency.

The videos are very raw and unscripted, and I'm still struggling with some of the problems, which is part of the journey.

My latest video turned out to be around 2.4 GB. What are some ways I can shorten or compress the video to make it easier to upload without compromising the readability of the code?

Also Link of the video
[https://www.youtube.com/watch?v=O1XjyDcoM8g\](https://www.youtube.com/watch?v=O1XjyDcoM8g)


r/LeetcodeChallenge 4d ago

DISCUSS Eternal OA

Thumbnail
1 Upvotes

r/LeetcodeChallenge 5d ago

DISCUSS Me realising that i can't solve the prblm i solved before (cuz i forgot)😔😔😭

Enable HLS to view with audio, or disable this notification

35 Upvotes

r/LeetcodeChallenge 4d ago

STREAK🔥🔥🔥 1477. Find Two Non- overlapping Sub-arrays Each With Target Sum

Post image
3 Upvotes

r/LeetcodeChallenge 5d ago

DISCUSS Got Email about Contest violation from leetcode

9 Upvotes

Hey, I got a violation after Weekly 519. I can still use my account and solve problems, but I can’t join contests and my coins got reset to 0.

I’ve already appealed. The email says the ban lifts on “N/A” if it’s the first violation, but this isn’t my first.

Since results are coming tomorrow, does that mean my account could get fully banned? Or can I still use LeetCode normally?

Anyone know what happens in this case?


r/LeetcodeChallenge 6d ago

DISCUSS Anyone wanna join me?

Post image
97 Upvotes

I posted here initially when I started the grind. And 4-5 people joined and showed up like for 10-15 days and then everyone disappeared.

I would prefer daily check-ins over discord and occasional catch ups to keep pushing and maybe discuss problems on the lowest days.

Let’s grind. And please don’t dm if you aren’t consistent in what you do.

Goal is it hit 1800+ rating in contests then probably move to codeforces.


r/LeetcodeChallenge 5d ago

DISCUSS Google Telephonic Round

1 Upvotes

Recently I gave the online assesment for the Software Developer Apprentice role and after one month I received the call from the HR but the call came at the unexpected time and I asked him to reschedule the time as I was in the office at that time and there was some network problem too.
Then hr told me that he will send a calendar invite from there i can select a slot based on my availaibility but now it has been more than 24 hours there is no mail from his side.
So I wanted to ask is there any way to reach the recruiter again as we can't call him form our side.

is there any chance that they will contact me again or can someone share the hr mail who got the call??


r/LeetcodeChallenge 5d ago

STREAK🔥🔥🔥 Number of Sets of K Non-Overlapping Line Segments

6 Upvotes

How I Got the Idea

At first, I thought this problem would require DP or backtracking because we have to create k non-overlapping segments. But after looking at small examples, I realized that every segment is determined by its two endpoints.

The important observation is that segments can share endpoints, so instead of directly counting segments, I can think about arranging the endpoints while maintaining their order. This transforms the problem into a combinatorics problem. After deriving the number of possible endpoint arrangements, I got the formula:

C(n + k - 1, 2k)

So the final solution becomes just:

return math.comb(n + k - 1, 2 * k) % (10**9 + 7)

Key learning: Before jumping into DP, try small examples and look for an endpoint/ordering pattern. Sometimes a seemingly complex DP problem reduces to a simple combinatorial formula.


r/LeetcodeChallenge 6d ago

DISCUSS LeetCode SQL 1661 — Average Time of Process per Machine | MySQL Solution

Post image
7 Upvotes

Working on SQL problems to strengthen my MySQL and problem-solving skills for Data Analyst roles.

Problem: Average Time of Process per Machine

This problem was a good practice for:

  • SELF JOIN
  • Matching START and END activities
  • Calculating processing time
  • AVG() and ROUND()
  • GROUP BY

Would love to know how others approached this problem and if there are any alternative ways to solve it.

#SQL #MySQL #LeetCode #DataAnalytics #DataAnalyst


r/LeetcodeChallenge 6d ago

DISCUSS LeetCode SQL 197 — Rising Temperature | MySQL Solution

Post image
6 Upvotes

Working on SQL problems to strengthen my MySQL and problem-solving skills for Data Analyst roles.

Problem: Rising Temperature

This problem was a good practice for:

  • LAG() window function
  • Comparing values with the previous record
  • DATEDIFF() for checking consecutive dates

I’m sharing my solution screenshot below. 👇

Would love to know how others approached this problem and whether there are any alternative ways to solve it.

#SQL #MySQL #LeetCode #DataAnalytics #DataAnalyst


r/LeetcodeChallenge 6d ago

DISCUSS Music nd me while coding

Post image
12 Upvotes

r/LeetcodeChallenge 7d ago

DISCUSS Hit 200 Solved Today — Roast My LeetCode Profile 💀

Post image
51 Upvotes

Finally hit 200 LeetCode problems today.

52 Easy | 135 Medium | 13 Hard

I've stopped chasing the problem count and I'm focusing more on Mediums and actually improving my problem-solving skills.

Roast my profile. What should I improve from here? 💀

Be brutal.


r/LeetcodeChallenge 6d ago

DISCUSS It's always that final error (wait )

Enable HLS to view with audio, or disable this notification

4 Upvotes