Dhruv Chouhandestroycompiler.hashnode.dev·Aug 1, 2024Binary Search on Answer - perfect_1This blog is a sequel to the blog https://hashnode.com/post/clz7xrmbw000j08l2ckev8a3x which explains the basic intuition, understanding and usage of binary search algorithm. This blog teaches the application of binary search in solving problems. Sol...32 likes·211 readsBinary Search Algorithm
Chetan Dattachetan77.hashnode.dev·Mar 24, 2024Find Nth Root Of MProblem statement You are given two positive integers 'n' and 'm'. You have to return the 'nth' root of 'm', i.e. 'm(1/n)'. If the 'nth root is not an integer, return -1. (link) Note: 'nth' root of an integer 'm' is a number, which, when raised to th...Leetcodeleetcode
Ramandeep Singhramandeepsingh.hashnode.dev·May 12, 2023Binary Search : Identifying monotonic patternsAbstract Binary search is a very common and widely used strategy for solving many algorithmic problems. The problems around binary search are common in tech interviews as well as programming contests. There are numerous applications of this algorithm...1 like·615 readsBinary Search Algorithm