Write a program to remove duplicates from array of prime numbers.
Write a program to return nearest elements from a binary search tree for input element.
Given two numbers represented by two linked lists, write a function that returns sum list. The sum list is linked list representation of addition of two input numbers.
Given a matrix of characters and a string, find whether the string can be obtained from the matrix.
Convert a given tree to its Sum Tree
Longest K unique characters substring
Implement a LRU cache, extended for LRU with ttl at each block.
k largest(or smallest) elements in an array
Full working code of Dijastra Algorithm and a dry run.
Find smallest positive missing number from an array of positive numbers.
Given a binary tree all the leaf nodes in the form of a doubly linked list. Find the height of the tree.
Given N sorted LinkList of different length, merge them into a single sorted link list.
Insert a number at its correct position in a sorted circular linked list.
Find the maximum possible profit that you could achieve by doing transactions given the price array for n days.
Find a pair with given target in BST
Lowest Common Ancestor in a Binary Tree
Write a function to remove duplicate characters from String?
How to find the 3rd element from end, in a singly linked, in a single pass?