263. Ugly Number

    技术2022-07-11  82

    public boolean isUgly(int num) { if (num <= 0) return false; if (num == 1) return true; while (num % 2 == 0) num = num / 2; while (num % 3 == 0) num = num / 3; while (num % 5 == 0) num = num / 5; return num == 1; }
    Processed: 0.014, SQL: 9