Tip 1 : Practice at Atleast 250 Questions
Tip 2 : Ex- Do at least 2 projects
Tip 1 : Have some projects on resume.
Tip 2 : Do not put false things on resume.



Given the count of total stones in a game. Two-player ‘Ale’ and ‘Bob’ are playing the game. Your task is to find who will win the game if both the players are playing optimally.
Rules of the game.
1. In a single turn, a player can choose a single stone or ‘even’ number of stones.
2. They will play alternatively, which means in the first chance ‘Ale’ will collect the stones, in second-chance ‘Bob’ will collect the stones. And always ‘Ale’ will start the game.
3. If any player is not able to take any stones then another player will win the game.



For the given binary tree:

Output: 96553210
Explanation: After concatenating all the numbers in the above binary tree this is the largest number that can be formed.
You have been given a Binary Tree of 'N' nodes where the nodes have integer values.
Your task is to find the largest number that could be formed by concatenating all its nodes values.



If the given graph is :

Then the edge between 0 and 4 is the bridge because if the edge between 0 and 4 is removed, then there will be no path left to reach from 0 to 4.and makes the graph disconnected, and increases the number of connected components.
There are no self-loops(an edge connecting the vertex to itself) in the given graph.
There are no parallel edges i.e no two vertices are directly connected by more than 1 edge.
Given an undirected graph of V vertices and E edges. Your task is to find all the bridges in the given undirected graph. A bridge in any graph is defined as an edge which, when removed, makes the graph disconnected (or more precisely, increases the number of connected components in the graph).



If 'N' = 4. You need to return 1^2 + 2^2 + 3^2 + 4^2 = 30.
You are given an integer 'N'. You need to find the sum of squares of the first 'N' natural numbers.
Where do you see yourself five years from now?
On a scale of one to ten, rate me as an interviewer.
Do you have any questions for me?

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