Tip 1 : Graph should be on your tips.
Tip 2 : while explaining the solution to interviewer, dont just hop onto the most optimal solution. Start with the brute force one, give the cons of brute force solution, and then go step by step till you reach the optimal solution.
Tip 3 : Improve on your communication skills as well.
Tip 1 : Mention only what is required for your profile, for e.g. do not stress too much on your co curricular stuff. Rather, try explaining more of your technical stuff that is relevant for your job.
Tip 2 : Keep it limited to 1 page. And make sure its a pdf and not an image.
Given a binary tree with N number of nodes, check if that input tree is Partial BST (Binary Search Tree) or not. If yes, return true, return false otherwise.
You have been given a string āAā consisting of lower case English letters. Your task is to find the length of the longest palindromic subsequence in āAā.
A subsequence is a sequence generated from a string after deleting some or no characters of the string without changing the order of the remaining string characters. (i.e. āaceā is a subsequence of āabcdeā while āaecā is not).
A string i...
You are given āNā words of various lengths, now you have to arrange these words in such a way that each line contains at most āMā characters and each word is separated by a space character. The cost of each line is equal to the cube of extra space characters required to complete āMā characters in that particular line. Total cost is equal to the sum of costs of each line.