All Downloads are FREE. Search and download functionalities are using the official Maven repository.

g0201_0300.s0264_ugly_number_ii.readme.md Maven / Gradle / Ivy

There is a newer version: 1.24
Show newest version
264\. Ugly Number II

Medium

An **ugly number** is a positive integer whose prime factors are limited to `2`, `3`, and `5`.

Given an integer `n`, return _the_ nth _**ugly number**_.

**Example 1:**

**Input:** n = 10

**Output:** 12

**Explanation:** [1, 2, 3, 4, 5, 6, 8, 9, 10, 12] is the sequence of the first 10 ugly numbers. 

**Example 2:**

**Input:** n = 1

**Output:** 1

**Explanation:** 1 has no prime factors, therefore all of its prime factors are limited to 2, 3, and 5. 

**Constraints:**

*   `1 <= n <= 1690`




© 2015 - 2024 Weber Informatics LLC | Privacy Policy