Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 405 Bytes

PerfectSquare.md

File metadata and controls

28 lines (19 loc) · 405 Bytes

PerfectSquare

  • PerfectSquare()

Validates whether the input is a perfect square.

v::perfectSquare()->isValid(25); // true (5*5)
v::perfectSquare()->isValid(9); // true (3*3)

Categorization

  • Math
  • Numbers

Changelog

Version Description
0.3.9 Created

See also: