0263. Ugly Number
https://leetcode.com/problems/ugly-number
Description
An ugly number is a positive integer whose prime factors are limited to 2
, 3
, and 5
.
Given an integer n
, return true
if n
is an ugly number.
Example 1:
Example 2:
Example 3:
Example 4:
Constraints:
-231 <= n <= 231 - 1
ac
https://leetcode.com/problems/ugly-number/discuss/69225/My-2ms-java-solution
Last updated