Tip 1 : DSA questions are the key, practice them daily.
Tip 2 : Do not ignore core engineering subject.
Tip 3 : Maintain a routine, do not mess around that.
Tip 1 : Make it a single page if possible.
Tip 2 : Always add a short description of your projects on the resume.



The given linked list is 1 -> 2 -> 3 -> 4-> NULL. Then the reverse linked list is 4 -> 3 -> 2 -> 1 -> NULL and the head of the reversed linked list will be 4.
Can you solve this problem in O(N) time and O(1) space complexity?





‘?’ – matches any single character
‘*’ – Matches any sequence of characters(sequence can be of length 0 or more)



1. Each of the digits 1 - 9 must occur exactly once in each row.
2. Each of the digits 1 - 9 must occur exactly once in each column.
3. Each of the digits 1 - 9 must occur exactly once in each of the 9, 3 x 3 sub-matrices of the matrix.
1. There will always be a cell in the matrix which is empty.
2. The given initial matrix will always be consistent according to the rules mentioned in the problem statement.



If edges[i][j] = 1, that implies there is a bi-directional edge between ‘i’ and ‘j’, that means there exists both edges from ‘i’ to ‘j’ and to ‘j’ to ‘i’.
Given:
‘N’ = 3
‘edges’ = [[0, 1, 1], [0, 0, 1], [0,0,0]].


Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is recursion?