Interview Questions asked in Flipkart
Search In A Sorted Array EASY
Given a sorted array of integers, check if given key is present in it?
ArrayReverse A Linked List EASY
Given a linked list, reverse the direction of nodes in the list.
Linked List RecursionDeletion In Binary Search Tree MEDIUM
Delete a node from BST (Binary Search Tree) such that the resultant tree is also a BST.
Binary Tree RecursionTime Difference Problem MEDIUM
Given two time values, generate the time difference string.
Misc StringConnect Siblings In Binary Tree MEDIUM
Given a binary tree, connect the sibling nodes at each level.
Binary Tree QueueConstruct Binary Tree From Its PreOrder And InOrder MEDIUM
Given pre-order & in-order traversal of a binary tree, construct the tree.
Binary Tree RecursionPrint Cousins In Binary Tree MEDIUM
Given a binary tree, print the cousins of the given node.
Binary Tree RecursionPair That Adds Up To Given Number MEDIUM
Given an array of integers and a sum, find a pair that adds up to the sum given.
ArrayLargest K Integers From Stream Of Integers HARD
Given a stream of integers, find the largest K integers.
Heap SortingNumber Of Paths From Top Left To Bottom Right Cell In Exactly K Turns HARD
Given a matrix of size MxN and an integer K, find the number of the paths possible from top left cell to bottom right cell with exactly K turns.
Dynamic Programming Matrix Recursion