Tip 1 : practise at least 600 problems of a different varieties,Don't stick with one website while preparing, if doing leetcode make sure to solve on codeforces as well
Tip 2 : try to solve at least 2-3 questions everyday while preparing
Tip 3 : Add atleast 2 good projects in resume and the relevant skills
Tip 1 : Add only those points on your resume which are relevant and you can answer related to them in the interview
Tip 2 : Resume should reflect the skills for the role which you are applying for
All the round were conducted in the office timings platform was good for coding test and hence overall a good coding round experience.
The interview was taken by a single person only on the Microsoft teams platform and was polite during the entire interview.



Try to solve the problem in 'Single Scan'. ' Single Scan' refers to iterating over the array/list just once or to put it in other words, you will be visiting each element in the array/list just once.
Interview


1. A Prime number is a number that has only two factors 1 and N itself.
2. A Prime number P is known as Special Prime if it can
be represented as follows:
P = A^2 + B^4
where A and B are positive integers.
3. A and B should be greater than 0.
check whether the value in the node is prime or not and then simply delete that node if the value is prime.



A -> 1
B -> 2
C -> 3
...
Z -> 26
AA -> 27
AB -> 28
...
can be found on leetcode.The basic approach is to divide the number by 26 repeatedly and take the letter corresponding to number mod 26 and append that letter in string

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you remove whitespace from the start of a string?