Skip to content

Commit 3cec687

Browse files
committed
solution is added
1 parent e9e7cdc commit 3cec687

File tree

32 files changed

+369
-0
lines changed

32 files changed

+369
-0
lines changed

0263.ugly-number/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [263. Ugly Number](https://leetcode.com/problems/ugly-number/)

0263.ugly-number/UglyNumber.java

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
class UglyNumber {
2+
private int keepDividingWhenDivisible(int dividend, int divisor) {
3+
while (dividend % divisor == 0) {
4+
dividend /= divisor;
5+
}
6+
return dividend;
7+
}
8+
9+
public boolean isUgly(int n) {
10+
if (n <= 0) return false;
11+
for (int factor : new int[]{2, 3, 5}) {
12+
n = keepDividingWhenDivisible(n, factor);
13+
}
14+
15+
return n == 1;
16+
}
17+
}
+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
class MissingNumber {
2+
public int missingNumber(int[] nums) {
3+
int ret = 0;
4+
for (int i = 0; i < nums.length; i++) ret = ret ^ i ^ nums[i];
5+
return ret ^ nums.length;
6+
}
7+
}

0268.missing-number/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# [268. Missing Number](https://leetcode.com/problems/missing-number/)
2+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
/* The isBadVersion API is defined in the parent class VersionControl.
2+
boolean isBadVersion(int version); */
3+
4+
public class FirstBadVersion extends VersionControl {
5+
public int firstBadVersion(int n) {
6+
int l = 1, h = n;
7+
while (l < h) {
8+
int mid = l + (h - l) / 2;
9+
if (isBadVersion(mid)) {
10+
h = mid;
11+
} else {
12+
l = mid + 1;
13+
}
14+
}
15+
return l;
16+
}
17+
}

0278.first-bad-version/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [278. First Bad Version](https://leetcode.com/problems/first-bad-version/)
+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import java.util.Arrays;
2+
3+
class PerfectSquares {
4+
public int numSquares(int n) {
5+
int[] dp = new int[n + 1];
6+
Arrays.fill(dp, Integer.MAX_VALUE);
7+
dp[0] = 0;
8+
9+
for (int i = 1; i <= n; i++) {
10+
for (int j = 1; j <= Math.sqrt(i); j++) {
11+
dp[i] = Math.min(dp[i], (dp[i - (j * j)] + 1));
12+
}
13+
}
14+
15+
return dp[n];
16+
}
17+
}

0279.perfect-squares/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [279. Perfect Squares](https://leetcode.com/problems/perfect-squares/)

0283.move-zeroes/MoveZeroes.java

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
class MoveZeroes {
2+
public void moveZeroes(int[] nums) {
3+
int idx = 0;
4+
for (int num : nums) {
5+
if (num != 0) {
6+
nums[idx++] = num;
7+
}
8+
}
9+
while (idx < nums.length) {
10+
nums[idx++] = 0;
11+
}
12+
}
13+
}

0283.move-zeroes/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [283. Move Zeroes](https://leetcode.com/problems/move-zeroes/)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
class FindTheDuplicateNumber {
2+
public int findDuplicate(int[] nums) {
3+
int l = 1, h = nums.length - 1;
4+
while (l <= h) {
5+
int mid = l + (h - l) / 2;
6+
int cnt = 0;
7+
for (int i = 0; i < nums.length; i++) {
8+
if (nums[i] <= mid) cnt++;
9+
}
10+
if (cnt > mid) h = mid - 1;
11+
else l = mid + 1;
12+
}
13+
return l;
14+
}
15+
}
+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# [287. Find the Duplicate Number](https://leetcode.com/problems/find-the-duplicate-number/)
2+

0290.word-pattern/README.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# [290. Word Pattern](https://leetcode.com/problems/word-pattern/)
2+
3+
4+
Complexity Analysis:
5+
6+
- Time Complexity: $O(n+m)$. $n$ is the length of s and $m$ is the length of pattern. Each character is only traverse at most once.
7+
- Space Complexity: $O(n+m)$. The size of two maps is $n$ and $m$ respectively.

0290.word-pattern/WordPattern.java

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
import java.util.HashMap;
2+
import java.util.Map;
3+
4+
class WordPattern {
5+
public boolean wordPattern(String pattern, String s) {
6+
Map<String, Character> str2ch = new HashMap<>();
7+
Map<Character, String> ch2str = new HashMap<>();
8+
int n = s.length(), i = 0;
9+
for (int p = 0; p < pattern.length(); p++) {
10+
char currentPattern = pattern.charAt(p);
11+
if (i >= n) return false;
12+
int j = i;
13+
while (j < n && s.charAt(j) != ' ') {
14+
j++;
15+
}
16+
String word = s.substring(i, j);
17+
if (str2ch.containsKey(word) && str2ch.get(word) != currentPattern)
18+
return false;
19+
if (ch2str.containsKey(currentPattern) && !word.equals(ch2str.get(currentPattern)))
20+
return false;
21+
str2ch.put(word, currentPattern);
22+
ch2str.put(currentPattern, word);
23+
i = j + 1;
24+
}
25+
return i >= n;
26+
}
27+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
import java.util.Collections;
2+
import java.util.PriorityQueue;
3+
4+
class MedianFinder {
5+
private final PriorityQueue<Integer> small = new PriorityQueue<>(Collections.reverseOrder());
6+
private final PriorityQueue<Integer> large = new PriorityQueue<>();
7+
private boolean even = true;
8+
9+
public MedianFinder() {
10+
11+
}
12+
13+
public void addNum(int num) {
14+
if (even) {
15+
large.offer(num);
16+
small.offer(large.poll());
17+
} else {
18+
small.offer(num);
19+
large.offer(small.poll());
20+
}
21+
even = !even;
22+
}
23+
24+
public double findMedian() {
25+
if (even)
26+
if (!small.isEmpty() && !large.isEmpty())
27+
return (small.peek() + large.peek()) / 2.0;
28+
else
29+
return 0;
30+
else
31+
if (!small.isEmpty())
32+
return small.peek();
33+
else
34+
return 0;
35+
}
36+
}
37+
38+
/**
39+
* Your MedianFinder object will be instantiated and called as such:
40+
* MedianFinder obj = new MedianFinder();
41+
* obj.addNum(num);
42+
* double param_2 = obj.findMedian();
43+
*/
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# [295. Find Median from Data Stream](https://leetcode.com/problems/find-median-from-data-stream/)
2+

0299.bulls-and-cows/BullsAndCows.java

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
import java.util.HashMap;
2+
import java.util.HashSet;
3+
import java.util.Set;
4+
5+
class BullsAndCows {
6+
public String getHint(String secret, String guess) {
7+
int bulls = 0;
8+
for (int i = 0; i < secret.length(); i++) {
9+
if (secret.charAt(i) == guess.charAt(i)) {
10+
bulls++;
11+
secret = secret.substring(0, i) + secret.substring(i + 1);
12+
guess = guess.substring(0, i) + guess.substring(i + 1);
13+
i--;
14+
}
15+
}
16+
17+
HashMap<Character, Integer> map = new HashMap<>();
18+
for (char c : secret.toCharArray()) {
19+
map.put(c, map.getOrDefault(c, 0) + 1);
20+
}
21+
22+
int cows = 0;
23+
for (char c : guess.toCharArray()) {
24+
if (map.containsKey(c) && map.get(c) != 0) {
25+
cows++;
26+
map.put(c, map.get(c) - 1);
27+
}
28+
}
29+
30+
return bulls + "A" + cows + "B";
31+
}
32+
}

0299.bulls-and-cows/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [299. Bulls and Cows](https://leetcode.com/problems/bulls-and-cows/)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
import java.util.Arrays;
2+
3+
class LongestIncreasingSubsequence {
4+
public int lengthOfLIS(int[] nums) {
5+
int[] dp = new int[nums.length];
6+
dp[nums.length - 1] = 1;
7+
for (int i = nums.length - 2; i >= 0; i--) {
8+
int max = 1;
9+
for (int j = i + 1; j < nums.length; j++) {
10+
if (nums[i] < nums[j]) {
11+
if (max < dp[j] + 1) max = dp[j] + 1;
12+
}
13+
}
14+
dp[i] = max;
15+
}
16+
return Arrays.stream(dp).max().getAsInt();
17+
}
18+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [300. Longest Increasing Subsequence](https://leetcode.com/problems/longest-increasing-subsequence/)
+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# [307. Range Sum Query - Mutable](https://leetcode.com/problems/range-sum-query-mutable/)
2+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
class NumArray {
2+
private int[] sums;
3+
private int[] nums;
4+
5+
private int getSum(int i) {
6+
int sum = 0;
7+
while (i > 0) {
8+
sum += sums[i];
9+
i = i - (i & (-i));
10+
}
11+
return sum;
12+
}
13+
14+
public NumArray(int[] nums) {
15+
this.nums = new int[nums.length];
16+
sums = new int[nums.length + 1];
17+
for (int i = 0; i < nums.length; i++) {
18+
update(i, nums[i]);
19+
}
20+
}
21+
22+
public void update(int index, int val) {
23+
int diff = val - nums[index];
24+
int j = index + 1;
25+
while (j < sums.length) {
26+
sums[j] += diff;
27+
j = j + (j & (-j));
28+
}
29+
nums[index] = val;
30+
}
31+
32+
public int sumRange(int left, int right) {
33+
return getSum(right + 1) - getSum(left);
34+
}
35+
}
36+
37+
/**
38+
* Your NumArray object will be instantiated and called as such:
39+
* NumArray obj = new NumArray(nums);
40+
* obj.update(index,val);
41+
* int param_2 = obj.sumRange(left,right);
42+
*/
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
class BestTimeToBuyAndSellStockWithCooldown {
2+
public int maxProfit(int[] prices) {
3+
int n = prices.length;
4+
if (n == 0) return 0;
5+
6+
int[][] f = new int[n][3];
7+
f[0][0] = -prices[0];
8+
for (int i = 1; i < n; i++) {
9+
f[i][0] = Math.max(f[i - 1][0], f[i - 1][2] - prices[i]);
10+
f[i][1] = f[i - 1][0] + prices[i];
11+
f[i][2] = Math.max(f[i - 1][1], f[i - 1][2]);
12+
}
13+
return Math.max(f[n - 1][1], f[n - 1][2]);
14+
}
15+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# [309. Best Time to Buy and Sell Stock with Cooldown](https://leetcode.com/problems/best-time-to-buy-and-sell-stock-with-cooldown/)
2+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
import java.util.Arrays;
2+
import java.util.List;
3+
4+
class CountOfSmallerNumbersAfterSelf {
5+
public List<Integer> countSmaller(int[] nums) {
6+
int min = 20001;
7+
int max = -1;
8+
for (int num : nums) {
9+
min = Math.min(min, num);
10+
max = Math.max(max, num);
11+
}
12+
13+
min--;
14+
int[] count = new int[max - min + 1];
15+
Integer[] result = new Integer[nums.length];
16+
for (int i = nums.length-1; i >=0; i--) {
17+
int k = nums[i] - min - 1;
18+
int c = 0;
19+
do {
20+
c += count[k];
21+
k -= (-k&k);
22+
} while (k > 0);
23+
result[i] = c;
24+
25+
k = nums[i]-min;
26+
while (k < count.length) {
27+
count[k]++;
28+
k += (-k & k);
29+
}
30+
}
31+
32+
return Arrays.asList(result);
33+
}
34+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# [315. Count of Smaller Numbers After Self](https://leetcode.com/problems/count-of-smaller-numbers-after-self/)
2+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
class MaximumProductOfWordLengths {
2+
public int maxProduct(String[] words) {
3+
int n = words.length;
4+
int[] val = new int[n];
5+
for (int i = 0; i < n; i++) {
6+
for (char c : words[i].toCharArray()) {
7+
val[i] |= 1 << (c - 'a');
8+
}
9+
}
10+
int ret = 0;
11+
for (int i = 0; i < n; i++) {
12+
for (int j = i + 1; j < n; j++) {
13+
if ((val[i] & val[j]) == 0) {
14+
ret = Math.max(ret, words[i].length() * words[j].length());
15+
}
16+
}
17+
}
18+
return ret;
19+
}
20+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [318. Maximum Product of Word Lengths](https://leetcode.com/problems/maximum-product-of-word-lengths/)

0 commit comments

Comments
 (0)