3 min Coding ProblemsDepth First Search – Traversal Of The Graph Problem Statement Given an undirected, unweighted graph print the DFS traversal of the graph. Sample Test CasesInput 1:…June 23, 2023 Read More
2 min Coding ProblemsSerialize and Deserialize a Binary Tree Problem Statement Given a binary tree, serialize and deserialize the binary tree. Serialize: Write the tree into a…June 23, 2023 Read More
3 min Coding ProblemsDelete Node From Binary Search Tree Problem Statement Given a binary search tree and a key value. The task is to delete the given…June 23, 2023 Read More
5 min Coding ProblemsMinimum Spanning Tree – Kruskal Algorithm Problem Statement In Kruskal Algorithm, initially, all the nodes of the graph are separated from each other, which…June 15, 2023 Read More
4 min Coding ProblemsTower of Hanoi What is the Tower of Hanoi? The Tower of Hanoi is a mathematical puzzle. It consists of three…June 13, 2023 Read More
3 min Coding ProblemsPreorder Traversal Problem Statement Given a binary tree, the task is to print the preorder traversal of the tree. Pre-Order…June 12, 2023 Read More
5 min Coding ProblemsLongest Common Subsequence Problem Statement Given two strings, the task is to find the longest common subsequence present in the given…June 12, 2023 Read More
4 min Coding ProblemsLongest Increasing Subsequence The Longest Increasing Subsequence (LIS) problem is to find the length of the longest subsequence of a given…June 12, 2023 Read More
3 min Coding ProblemsLevel Order Traversal of Binary Tree Level Order Traversal is the algorithm to process all nodes of a tree by traversing through depth, first…June 12, 2023 Read More
3 min Coding ProblemsPalindrome Number in C, Java, and Python A palindrome number is a number that remains the same when digits are reversed. For example, the number…March 27, 2023 Read More