#algorithms
Read more stories on Hashnode
Articles with this tag
Sliding window is a really popular technique used to solve complex problems related to Strings and Arrays. It generally reduces the time complexity of...
Problem Statement We have to place N number of Knights in a NxN matrix, such that no 2 knights cross each other's path in any way. This Problem is to...
Problem Statement We have to place N number of queens in a NxN matrix, such that no 2 queens cross each other's path in any way. This Problem is to be...
What is Quick Sort? Quick Sort is a Divide and Conquer algorithm based on Recursion. It works around taking a pivot and placing it at the correct...