How to check whether a number is a perfect cube root in TypeScript

1 Answer

0 votes
// The cube root is a whole number. For example, 27 is a perfect cube, as ∛27 or (27)**1/3 = 3
 
function isPerfectCubeRoot(x: number) {
    x = Math.abs(x);
         
    const cubeRoot: number = Math.round(Math.pow(x, 1.0 / 3.0));
         
    return Math.pow(cubeRoot, 3) === x;
}
 
console.log(isPerfectCubeRoot(8));
console.log(isPerfectCubeRoot(16));
console.log(isPerfectCubeRoot(64));
console.log(isPerfectCubeRoot(27));
console.log(isPerfectCubeRoot(25));
console.log(isPerfectCubeRoot(-64));
console.log(isPerfectCubeRoot(-27));
console.log(isPerfectCubeRoot(729));
 
    
  
/*
run:
         
true 
false
true
true
false
true
true
true
         
*/

 



answered Sep 2, 2024 by avibootz

Related questions

1 answer 117 views
1 answer 120 views
1 answer 158 views
1 answer 181 views
1 answer 177 views
1 answer 114 views
...