(0) Binary Search: Valid Perfect Square
Question Link and Solution Link
Difficulty: Easy
Problem Statement: Given positive number return true if the number is perfect square else return false.
Approach1: Use a simple while loop and traverse through all numbers starting from 1 (cur) and c...
programminguides.hashnode.dev1 min read