-
Notifications
You must be signed in to change notification settings - Fork 7
Open
Description
/*
* @param {number} num
* @return {boolean}
*/
var isUgly = function(num) {
if(num <= 0)
return false;
else if(num == 1)
return true;
while(num > 5)
{
if(num % 5 === 0) num = num / 5;
else if (num % 3 === 0) num = num / 3;
else if (num % 2 === 0) num = num / 2;
else return false;
}
return true;
};
Metadata
Metadata
Assignees
Labels
No labels