Skip to main content

Best LeetCode Lists for Interviews

Here is a list of some of the best questions asked in interviews:- 



Must do 75



Must do 60 



Must do medium:- 

Must do Easy:-

Graph:- 

 Dynamic Programming:- 

 FaceBook interviews:-

 Amazon Interviews:- 

 Google Interviews:-









https://github.com/nazarmubeen/TopProblems/blob/master/README.md

Comments

Post a Comment

.

Popular posts from this blog

Nth Node from End in LinkedList

Nth Node from End in LinkedList 1)  Find length of  linked list. 2) Traverse (length-position+1) element from begin. //nth Node from end public Node nodeFromEnd ( Node head , int position ){ Node temp = head ; int length = 1 ; while ( temp . next != null ) { length ++; temp = temp . next ; } System . out . println ( "length" + length ); temp = head ; int c = 1 ; while ( c !=( length - position + 1 )) { temp = temp . next ; c ++; } return temp ; }