Logo

Programming-Idioms

  • JS
  • C++

Idiom #361 Test for perfect squarity

Set the boolean b to true if the integer n is a square number, false otherwise

E.g. 2025true

math
b := round(sqrt(n)) ** 2 = n;

Lazy: just square the square root to see if you get the original value again
b := number mod (round(sqrt(number)) = 0;

Basically the same as checking that squaring the result gives back the original, just in a different way (not necessarily faster).
import static java.lang.Math.sqrt;
boolean b = sqrt(n) % 1 == 0;

New implementation...
< >
steenslag