Anna leetcode la top 150 questions aprm 75 questions antha series fulla podunga anna very useful ha irukum anna
@KARTHIK-b3z4 ай бұрын
anna Zig zag conversion problem podunga na.
@arvindks49862 ай бұрын
Bro hashmap use panna mudiyuma?
@smsvijay32714 ай бұрын
bro when i am going to solve a problem... first i should try it myself or understand the concept from any source and then solve it?
@AlgoTamizha4 ай бұрын
I would suggest the following 1. try the problem yourself. 2. If stuck, dont look for solution immediately.. take 30 min to 1 hour think other ways. More than solving a problem, it is important to think about the problem for some time to get in sync with a pattern. 3. even after sometime if you are stuck, you can look at solutions. BUT after looking at the solution, dont go to the next problem immediately. CODE the solution yourself once. repeat the above steps for any new problem.
@21flame72Ай бұрын
// User function Template for Java class Solution { // Function to find hIndex public int hIndex(int[] citations) { // code here Arrays.sort(citations); int n =citations.length; for(int i=0;i=n-i){ return n-i; } } return 0; } }