Skip to content

Latest commit

 

History

History
57 lines (24 loc) · 824 Bytes

File metadata and controls

57 lines (24 loc) · 824 Bytes

Description

Write a program to find the n-th ugly number.

Ugly numbers are positive numbers whose prime factors only include 2, 3, 5

Example:

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.

Note:  

    <li><code>1</code> is typically treated as an ugly number.</li>
    
    <li><code>n</code> <b>does not exceed 1690</b>.</li>
    

Solutions

Python3

Java

...