Super Ugly Number
Try to solve the Super Ugly Number problem.
We'll cover the following
Statement
Given an integer n
and an array of distinct prime numbers primes
, return the n
-th super ugly number. A super ugly number is a positive integer whose only prime factors are from a given array primes
.
The n
-th super ugly number is guaranteed to fit within a 32-bit signed integer.
Constraints:
n
primes.length
primes[i]
primes[i]
is guaranteed to be a prime number.All the values of
primes
are unique and sorted in an ascending order.
Examples
Level up your interview prep. Join Educative to access 70+ hands-on prep courses.