forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_970.java
48 lines (45 loc) · 1.52 KB
/
_970.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package com.fishercoder.solutions;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
public class _970 {
public static class Solution1 {
public List<Integer> powerfulIntegers(int x, int y, int bound) {
int powerInteger;
Set<Integer> set = new HashSet<>();
for (int i = 0; i <= bound; i++) {
for (int j = 0; j <= bound; j++) {
powerInteger = (int) (Math.pow(x, i) + Math.pow(y, j));
if (powerInteger <= bound) {
set.add(powerInteger);
} else {
break;
}
if (y == 1) {
break;
}
}
if (x == 1) {
break;
}
}
return new ArrayList<>(set);
}
}
public static class Solution2 {
/**
* credit: https://leetcode.com/problems/powerful-integers/discuss/214212/JavaC%2B%2BPython-Brute-Force
*/
public List<Integer> powerfulIntegers(int x, int y, int bound) {
Set<Integer> result = new HashSet<>();
for (int i = 1; i < bound; i *= x > 1 ? x : bound + 1) {
for (int j = 1; i + j <= bound; j *= y > 1 ? y : bound + 1) {
result.add(i + j);
}
}
return new ArrayList<>(result);
}
}
}