// Given a positive integer num, write a function which returns True if num is a perfect square else False. // Note: Do not use any built-in library function such as sqrt. // Special thanks to ...
Given a positive integer num, return true if num is a perfect square or false otherwise. A perfect square is an integer that is the square of an integer. In other words, it is the product of some ...