Skip to content

Commit dbacbf8

Browse files
committed
Runtime: 3 ms (Top 39.15%) | Memory: 41.9 MB (Top 60.38%)
1 parent f317559 commit dbacbf8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/algorithms/P/Powerful Integers/Powerful Integers.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Runtime: 3 ms (Top 39.15%) | Memory: 41.9 MB (Top 60.38%)
12
class Solution {
23
public List<Integer> powerfulIntegers(int x, int y, int bound) {
34
HashSet<Integer> set = new HashSet<>();
@@ -10,4 +11,4 @@ public List<Integer> powerfulIntegers(int x, int y, int bound) {
1011
}
1112
return new ArrayList<>(set);
1213
}
13-
}
14+
}

0 commit comments

Comments
 (0)