Skip to content

Commit 63178b4

Browse files
refactor 313
1 parent 9cd6ff6 commit 63178b4

File tree

1 file changed

+0
-15
lines changed
  • src/main/java/com/fishercoder/solutions

1 file changed

+0
-15
lines changed

src/main/java/com/fishercoder/solutions/_313.java

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,5 @@
11
package com.fishercoder.solutions;
22

3-
/**
4-
* 313. Super Ugly Number
5-
*
6-
* Write a program to find the nth super ugly number.
7-
* Super ugly numbers are positive numbers whose all prime factors
8-
* are in the given prime list primes of size k.
9-
* For example, [1, 2, 4, 7, 8, 13, 14, 16, 19, 26, 28, 32]
10-
* is the sequence of the first 12 super ugly numbers given primes = [2, 7, 13, 19] of size 4.
11-
*
12-
* Note:
13-
* (1) 1 is a super ugly number for any given primes.
14-
* (2) The given numbers in primes are in ascending order.
15-
* (3) 0 < k ≤ 100, 0 < n ≤ 106, 0 < primes[i] < 1000.
16-
* (4) The nth super ugly number is guaranteed to fit in a 32-bit signed integer.
17-
*/
183
public class _313 {
194

205
public static class Solution1 {

0 commit comments

Comments
 (0)