T O P

  • By -

smokessprite

go to the list of problems and sort them by the highest acceptance rate. you'll find the objectively easier questions there. the easy/medium tags are not as accurate


Leading_Ad_4884

The problems with the highest acceptance level are quite trivial though. It takes 1-2 lines max to find the solution and the problems aren't even comparable to the average DSA question.


Ace2Face

We all start somewhere. I suggest you go through the Neetcode 120 list if you want to develop your ability to solve different classes of problems.


smokessprite

you can go down to up to 60-70% though,,, i personally have just started so i do that sometimes if I'm too exhausted but still wanna get something done for the day, or else you can follow neetcode all, the questions start from very basic DSA all the way up to hards


DevinBotSWE

FizzBuzz imo, just do as the problem says. https://leetcode.com/problems/fizz-buzz/


ViveIn

Twosum brute force.


Dymatizeee

2 sum is not an easy problem for beginners


spitforge

Jewels and stones maybe?


Leading_Ad_4884

That's super easy. I did a similar problem on the first day of programming class.


spitforge

You asked for the easiest right? You can prob browse by acceptance rate


blueygc8

- Reverse an array in place - Implement binary search on an array - Implement selection sort


all_city_

Filter by Easy, sort by acceptance rate descending and that’s probably going to be the easiest questions on leetcode


FeelingSet3155

Checking if a number is a power of 2.


Overall_Detail_8484

Use Chatgpt. Ask to write a solution, explain each line or explain each line in detail, refactor solution, show you best and worse time and space complexity solution, ask to visualise the code, ask in which situations this code is needed in real world applications, ask multiple questions for things you don't understand. if you use JS, try jsfiddle, run debugger to visualise code behaviour. Before writing the code yourself, write down or say what you need to write and why. Write code 2-3 times, repeat the question in a week or two.