Top "Perfect-square" questions

Perfect square is an element of algebraic structure which is equal to the square (algebra) of another element.

Fastest way to determine if an integer's square root is an integer

I'm looking for the fastest way to determine if a long value is a perfect square (i.e. its square …

java math optimization perfect-square
Check if a number is a perfect square

How could I check if a number is a perfect square? Speed is of no concern, for now, just working.

python math perfect-square
What's a good algorithm to determine if an input is a perfect square?

Possible Duplicate: Fastest way to determine if an integer's square root is an integer What's a way to see if …

algorithm math perfect-square
How to check if an integer is a perfect square

How could I write an if-then statement that checks if an inputted integer is a perfect square or not (i.…

java drjava perfect-square
Python - Fastest way to find all perfect squares in a given large number range

I am trying to write a method to get all the perfect squares in a given range in Python. A …

python-3.x square-root perfect-square