We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d0e0cc commit 629157bCopy full SHA for 629157b
javascript/0263-ugly-number.js
@@ -0,0 +1,9 @@
1
+var isUgly = function(n) {
2
+ if(n <= 0)
3
+ return false;
4
+
5
+ for(const p of [2, 3, 5])
6
+ while(n % p == 0)
7
+ n = n / p;
8
+ return n == 1;
9
+};
0 commit comments