Determine if the input is a perfect square (square of an integer) or not.
Example -
If input is 25(==5^2), return 1.
If input is 17, return 0.
Use of if-else and switch is prohibited to prevent hard coded solutions.
Solution Stats
Problem Comments
2 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers90
Suggested Problems
-
The Goldbach Conjecture, Part 2
2417 Solvers
-
Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
400 Solvers
-
936 Solvers
-
Natural numbers in string form
1940 Solvers
-
484 Solvers
More from this Author44
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
FYI, switch-case works just like if-else.
Please prevent that as well if you hate hard-coded solutions.
@Lincoln Thank you for the note.
I will do so as well.