Do people use LeetCode all year round? I thought it was something people fresh out of school did because they thought it helped them be better at FANG interviews, but seems I've missed how they seemingly grew in scope.

> I was hesitant to implement this because I obviously people wouldn't trust inputting a cookie into a form, but if this repo gets lots of stars I'll make a chrome extension that gets around this.

Fun how it goes the opposite compared to the real security implications. Sending one exact cookie you can see to one site VS giving an unknown entity access to * permissions on your computer, and the entity can change at any time + update in the background by their own wishes.

Yup, it’s essentially a daily habit for many devs these days, I think they've added more gamification (streaks, badges, contests) combined with a UI update that makes it feel less like "prep." (example: https://leetcode.com/quest/)

> Fun how it goes the opposite compared to the real security implications.

You're spot on, it is pretty interesting. I suggested the extension purely to bridge that trust gap, especially if it's verified by the Chrome Web Store. If the extension is designed to strictly avoid calling any external APIs (other than leetcode graphql), it makes exfiltration impossible, ensuring the cookie never leaves the user's browser

> Yup, it’s essentially a daily habit for many devs these days

Beyond students/juniors? I don't think I've ever seen any of my colleagues or friends either talk about it or using it recreationally, but maybe I live in a different bubble.

I think for some people, they treat it like the daily crossword. For seniors, I've known a few that would do problems in a different language so they can get some basic exposure to it. Eg. If you program node js all day, you'd do the daily problem in kotlin or rust.
  • naet
  • ·
  • 12 hours ago
  • ·
  • [ - ]
I do both crosswords and frequently look at the daily leetcode problem. I don't always do it if the problem doesn't interest me. But sometimes I learn something new, other times I just hammer out a solution in 2-5 min for a little brain stimulation.

Making a habit of doing small puzzles like that can compound a lot over time. I am self taught and did not study algorithms in school, but I would consider myself stronger on the topic than most of my coworkers just from my learning to solve puzzles (and enjoying it). I am currently the senior / lead dev of my team.

I also love Advent of Code and look forwards to it all year.

I do both in languages that aren't what I primarily use at work.

> For seniors, I've known a few that would do problems in a different language so they can get some basic exposure to it.

Everyone including myself who does similar things of experimenting with different languages, do so with "real" (not sure what else to call it) programs on our machines for some purpose. Maybe recreate something else we did recently, or try it for that one specific use case we saw it potentially good for. Not doing random exercises on some online platform. I don't doubt some people find it satisfying, just interesting I don't find those people around me I guess.

There are large communities on the internet for solving competitive programming problems. Checkout Topcoder, Codeforces, etc. They have their own subculture and the regular winners are celebrities in that subculture. These people aren't solving these problems to get a job or interview with FANG or anything. They just do it as a sport. Like playing Chess or Scrabble.
I'm a student right now so I am certainly biased, but one senior dev (late 20s) from I company I interned at used it quite religiously despite being happily employed. I think some people feel it's a nice insurance policy to stay sharp
  • naet
  • ·
  • 12 hours ago
  • ·
  • [ - ]
Leetcode already has a feature like this, it just hasn't released for 2025 yet. Usually comes out closer to the end of the year.

Here is last years: https://leetcode.com/rewind/2024/

The OPs seems to be more cumulative lifetime stats rather than just this past year, for a lot of the slides.

That's interesting, didn't know that. Bummer you can't replay it once "the event has ended."

> The OPs seems to be more cumulative lifetime stats rather than just this past year, for a lot of the slides.

I disclose that the last 5 slides are lifetime stats in my readme:

"Note: The last 5 slides are not necessarily specific to 2025 because of leetcode's graphql api only allows querying up to 20 of the latest submissions from an unauthenticated user.

However, if you pass a LEETCODE_SESSION cookie (obtained from leetcode.com, open dev tools -> application -> cookies) with your request you can query all of your accounts submissions. You could also use the calendar endpoint query all of your submissions in the past year, and thus create a much more nuanced leetcode wrapped. (ex: You struggled with this problem the most in 2025.)"

I may try to tackle this via an extension with no server side logic if I have some free time later this week, would certainly be a cooler final product. Only caveat is users would have to manually install the extension from a github repo (too scary for most people) or the chrome web store, which may add too much friction for most people.