Concepts Used Back Tracking Difficulty Level Medium Problem Statement : Given N integers print all possible combinations. Solution Approach : Introduction : Idea is to swap all the values one-by-one...
Concepts Used Back Tracking Difficulty Level Medium Problem Statement : Given N, count all the numbers with unique digits less than 10n. Solution Approach : Introduction : Idea is to...
Concepts Used DFS , Recursion Difficulty Level Hard Problem Statement : "A SumTree is a Binary Tree where the value of a node is equal to sum of the nodes...