Backtracking Algorithm
In this blog we will discuss another problem solving strategy known as Backtracking. Backtracking is in a way similar to brute force paradigm to solve a problem but has some optimisations which make it better than vanilla brute force algorithms. Backtracking problems generally have many possible solutions and the intention is to find them all. … Continue reading Backtracking Algorithm