Tip 1 : Make atleast one full stack project and learn the tech stack
Tip 2 : Before giving the interview get familiar with the company's interview process
Tip 3 : Give and take mock interviews
Tip 1 : Add your internship
Tip 2 : Add your project
If you write something on your resume, you should know in and out of it
Multiple MCQ and two coding questions



1. You are not required to print the output explicitly, it has already been taken care of. Just implement the function and return the minimum number of parentheses required to make a string valid.



A Sudoku solution must satisfy all the following conditions-
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, 3x3 sub-grids of the grid.
You can also assume that there will be only one sudoku solution for the given matrix.



Input : 1 -> 2 -> 3 -> 4 -> 'NULL' and 'K' = 2
Output: 1 -> 2 -> 4 -> 'NULL'
Explanation:
After removing the second node from the end, the linked list become 1 -> 2 -> 4 -> 'NULL'.


Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is the default value of int data type?