Skip to content

Commit 58fac0e

Browse files
committed
Code is Added
1 parent cbf0559 commit 58fac0e

File tree

22 files changed

+338
-0
lines changed

22 files changed

+338
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
class DeleteColumnsToMakeSorted {
2+
public int minDeletionSize(String[] strs) {
3+
int ans = 0, n = strs.length;
4+
for (int i = 0; i < strs[0].length(); i++) {
5+
for (int j = 1; j < n; j++) {
6+
if (strs[j].charAt(i) < strs[j - 1].charAt(i)) {
7+
ans++;
8+
break;
9+
}
10+
}
11+
}
12+
return ans;
13+
}
14+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# [944. Delete Columns to Make Sorted](https://leetcode.com/problems/delete-columns-to-make-sorted/)
2+
3+
4+
5+
Complexity Analysis:
6+
7+
- Time Complexity: $O(m\times n)$. $m$ is the length of the string array and $n$ is the length of a single string in the string array.
8+
- Space Complexity: $O(1)$.
+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# [946. Validate Stack Sequences](https://leetcode.com/problems/validate-stack-sequences/)
2+
3+
4+
Complexity Analysis:
5+
6+
- Time Complexity: $O(n)$. $n$ is the length of `pushed`, since `pushed` and `popped` has the length, so the time complexity is $O(n)$.
7+
- Space Complexity: $O(n)$.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import java.util.Stack;
2+
3+
class ValidateStackSequences {
4+
public boolean validateStackSequences(int[] pushed, int[] popped) {
5+
Stack<Integer> stack = new Stack<>();
6+
int pushIndex = 0, popIndex = 0;
7+
while (popIndex < popped.length) {
8+
if (stack.isEmpty() && pushIndex < pushed.length) {
9+
stack.push(pushed[pushIndex++]);
10+
} else if (stack.peek() == popped[popIndex]) {
11+
stack.pop();
12+
popIndex++;
13+
} else if (pushIndex < pushed.length) {
14+
stack.push(pushed[pushIndex++]);
15+
} else {
16+
return false;
17+
}
18+
}
19+
20+
return true;
21+
}
22+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
import java.util.ArrayList;
2+
import java.util.List;
3+
4+
class MostStonesRemovedWithSameRowOrColumn {
5+
private boolean shareSameRowOrColumn(int[] a, int[] b) {
6+
return a[0] == b[0] || a[1] == b[1];
7+
}
8+
9+
private void dfs(int[][] stones, List<Integer>[] adj, int[] visited, int src) {
10+
visited[src] = 1;
11+
for (int adjacent : adj[src]) {
12+
if (visited[adjacent] == 0) {
13+
dfs(stones, adj, visited, adjacent);
14+
}
15+
}
16+
}
17+
18+
public int removeStones(int[][] stones) {
19+
List<Integer>[] adj = new ArrayList[stones.length];
20+
for (int i = 0; i < stones.length; i++) {
21+
adj[i] = new ArrayList<>();
22+
}
23+
24+
for (int i = 0; i < stones.length; i++) {
25+
for (int j = i + 1; j < stones.length; j++) {
26+
if (shareSameRowOrColumn(stones[i], stones[j])) {
27+
adj[i].add(j);
28+
adj[j].add(i);
29+
}
30+
}
31+
}
32+
33+
int[] visited = new int[stones.length];
34+
int componentCount = 0;
35+
for (int i = 0; i < stones.length; i++) {
36+
if (visited[i] == 0) {
37+
componentCount++;
38+
dfs(stones, adj, visited, i);
39+
}
40+
}
41+
return stones.length - componentCount;
42+
}
43+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# [947. Most Stones Removed with Same Row or Column](https://leetcode.com/problems/most-stones-removed-with-same-row-or-column/)
2+

0948.bag-of-tokens/BagOfTokens.java

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
import java.util.Arrays;
2+
3+
class BagOfTokens {
4+
public int bagOfTokensScore(int[] tokens, int power) {
5+
Arrays.sort(tokens);
6+
int left = 0, right = tokens.length - 1, res = 0;
7+
while (left <= right) {
8+
if (tokens[left] <= power) {
9+
power -= tokens[left];
10+
res++;
11+
left++;
12+
} else {
13+
if (left != right && res > 0) {
14+
power += tokens[right];
15+
res--;
16+
right--;
17+
} else {
18+
break;
19+
}
20+
}
21+
}
22+
return res;
23+
}
24+
}

0948.bag-of-tokens/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# [948. Bag of Tokens](https://leetcode.com/problems/bag-of-tokens/)
2+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# [953. Verifying an Alien Dictionary](https://leetcode.com/problems/verifying-an-alien-dictionary/)
2+
3+
4+
Complexity Analysis:
5+
6+
- Time Complexity: $O(m\times n)$. $m$ is the length of the words array and $n$ is the maximum length of string in the words array. Because we compared all words two by two, so the total time complexity is $O(m\times n)$.
7+
- Space Complexity: $O(C)$. $C$ is the length of order. We use an extra array to save it, so the total space complexity is $O(C)$.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
class VerifyingAnAlienDictionary {
2+
public boolean isAlienSorted(String[] words, String order) {
3+
int[] index = new int[26];
4+
for (int i = 0; i < order.length(); i++)
5+
index[order.charAt(i) - 'a'] = i;
6+
for (int i = 1; i < words.length; i++) {
7+
boolean valid = false;
8+
for (int j = 0; j < words[i - 1].length() && j < words[i].length(); j++) {
9+
int prev = index[words[i - 1].charAt(j) - 'a'];
10+
int curr = index[words[i].charAt(j) - 'a'];
11+
if (prev < curr) {
12+
valid = true;
13+
break;
14+
} else if (prev > curr) {
15+
return false;
16+
}
17+
}
18+
if (!valid) {
19+
if (words[i - 1].length() > words[i].length())
20+
return false;
21+
}
22+
}
23+
return true;
24+
}
25+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
import java.util.ArrayList;
2+
import java.util.List;
3+
4+
/**
5+
* Definition for a binary tree node.
6+
* public class TreeNode {
7+
* int val;
8+
* TreeNode left;
9+
* TreeNode right;
10+
* TreeNode() {}
11+
* TreeNode(int val) { this.val = val; }
12+
* TreeNode(int val, TreeNode left, TreeNode right) {
13+
* this.val = val;
14+
* this.left = left;
15+
* this.right = right;
16+
* }
17+
* }
18+
*/
19+
class CheckCompletenessOfABinaryTree {
20+
public boolean isCompleteTree(TreeNode root) {
21+
List<ANode> nodes = new ArrayList<>();
22+
nodes.add(new ANode(root, 1));
23+
int i = 0;
24+
while (i < nodes.size()) {
25+
ANode anode = nodes.get(i++);
26+
if (anode.node != null) {
27+
nodes.add(new ANode(anode.node.left, anode.code * 2));
28+
nodes.add(new ANode(anode.node.right, anode.code * 2 + 1));
29+
}
30+
}
31+
32+
return nodes.get(i - 1).code == nodes.size();
33+
}
34+
}
35+
36+
class ANode {
37+
TreeNode node;
38+
int code;
39+
40+
ANode(TreeNode node, int code) {
41+
this.node = node;
42+
this.code = code;
43+
}
44+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# [958. Check Completeness of a Binary Tree](https://leetcode.com/problems/check-completeness-of-a-binary-tree/)
2+
3+
4+
5+
Complexity Analysis:
6+
7+
- Time Complexity: $O(n)$. $n$ is the amount of nodes in the tree.
8+
- Space Complexity: $O(n)$.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
import java.util.ArrayList;
2+
import java.util.List;
3+
4+
class NumbersWithSameConsecutiveDifferences {
5+
private void DFS(int n, int num, int k, List<Integer> results) {
6+
if (n == 0) {
7+
results.add(num);
8+
return;
9+
}
10+
List<Integer> nextDigits = new ArrayList<>();
11+
int tailDigit = num % 10;
12+
nextDigits.add(tailDigit + k);
13+
if (k != 0) nextDigits.add(tailDigit - k);
14+
for (Integer nextDigit : nextDigits) {
15+
if (nextDigit >= 0 && nextDigit < 10) {
16+
int newNum = num * 10 + nextDigit;
17+
DFS(n - 1, newNum, k, results);
18+
}
19+
}
20+
}
21+
22+
public int[] numsSameConsecDiff(int n, int k) {
23+
if (n == 1) return new int[]{0, 1, 2, 3, 4, 5, 6, 7, 8, 9};
24+
List<Integer> res = new ArrayList<>();
25+
for (int num = 1; num < 10; num++) {
26+
DFS(n - 1, num, k, res);
27+
}
28+
29+
return res.stream().mapToInt(i->i).toArray();
30+
}
31+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# [967. Numbers With Same Consecutive Differences](https://leetcode.com/problems/numbers-with-same-consecutive-differences/)
2+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# [974. Subarray Sums Divisible by K](https://leetcode.com/problems/subarray-sums-divisible-by-k/)
2+
3+
4+
5+
Complexity Analysis:
6+
7+
- Time Complexity: $O(n)$. $n$ is the length of `nums`.
8+
- Space Complexity: $O(k)$. $k$ is the maximum size of hash map.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import java.util.HashMap;
2+
import java.util.Map;
3+
4+
class SubarraySumsDivisibleByK {
5+
public int subarraysDivByK(int[] nums, int k) {
6+
Map<Integer, Integer> counter = new HashMap<>();
7+
counter.put(0, 1);
8+
9+
int prefixSum = 0, ans = 0;
10+
for (int i = 0; i < nums.length; i++) {
11+
prefixSum += nums[i];
12+
int remainder = (prefixSum % k + k) % k;
13+
int getCount = counter.getOrDefault(remainder, 0);
14+
ans += getCount;
15+
counter.put(remainder, getCount + 1);
16+
}
17+
return ans;
18+
}
19+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import java.util.Arrays;
2+
3+
class LargestPerimeterTriangle {
4+
public int largestPerimeter(int[] nums) {
5+
Arrays.sort(nums);
6+
for (int i = nums.length - 3; i >= 0; i--) {
7+
if (nums[i] + nums[i + 1] > nums[i + 2])
8+
return nums[i] + nums[i + 1] + nums[i + 2];
9+
}
10+
return 0;
11+
}
12+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# [976. Largest Perimeter Triangle](https://leetcode.com/problems/largest-perimeter-triangle/)
2+
+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# [977. Squares of a Sorted Array](https://leetcode.com/problems/squares-of-a-sorted-array/)
2+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import java.util.Arrays;
2+
3+
class SquaresOfASortedArray {
4+
public int[] sortedSquares(int[] nums) {
5+
int[] squares = new int[nums.length];
6+
for (int i = 0; i < nums.length; i++) {
7+
squares[i] = nums[i] * nums[i];
8+
}
9+
Arrays.sort(squares);
10+
return squares;
11+
}
12+
}

0980.unique-paths-iii/README.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# [980. Unique Paths III](https://leetcode.com/problems/unique-paths-iii/)
2+
3+
4+
5+
Complexity Analysis:
6+
7+
- Time Complexity: $O(m\times n\times 2^{m\times n})$. The first iteration costs $O(m\times n)$. FindPath function costs $O(m\times n\times 4^{m\times n})$ because every grid has four directions and we have $m \times n$ grids. The total time complexity is $O(m\times n\times 2^{m\times n})$.
8+
- Space Complexity: $O(m\times n\times 2^{m\times n})$. The space complexity is as same as the function time complexity because we put the same amount of recursion functions to the stack.
+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
class UniquePathsIii {
2+
int ans = 0;
3+
int[] start;
4+
int totalSteps = 0;
5+
6+
public int uniquePathsIII(int[][] grid) {
7+
for (int i = 0; i < grid.length; i++) {
8+
for (int j = 0; j < grid[0].length; j++) {
9+
if (grid[i][j] == 1)
10+
start = new int[]{i, j};
11+
else
12+
if (grid[i][j] != -1)
13+
totalSteps++;
14+
}
15+
}
16+
findPath(start[0], start[1], 0, grid);
17+
return ans;
18+
}
19+
20+
private void findPath(int i, int j, int step, int[][] grid) {
21+
if (i < 0 || j < 0 || i == grid.length || j == grid[0].length || grid[i][j] == -1)
22+
return;
23+
if (grid[i][j] == 2) {
24+
if (totalSteps == step)
25+
ans++;
26+
} else {
27+
int g = grid[i][j];
28+
grid[i][j] = -1;
29+
findPath(i + 1, j, step + 1, grid);
30+
findPath(i - 1, j, step + 1, grid);
31+
findPath(i, j + 1, step + 1, grid);
32+
findPath(i, j - 1, step + 1, grid);
33+
grid[i][j] = g;
34+
}
35+
}
36+
}

0 commit comments

Comments
 (0)