Skip to content

Commit c258f16

Browse files
committed
solution added by anjha
1 parent 0fce97b commit c258f16

File tree

24 files changed

+381
-0
lines changed

24 files changed

+381
-0
lines changed
+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
import java.util.ArrayList;
2+
import java.util.List;
3+
4+
class PascalsTriangle {
5+
public List<List<Integer>> generate(int numRows) {
6+
List<List<Integer>> ans = new ArrayList<>();
7+
for (int i = 0; i < numRows; i++) {
8+
List<Integer> temp = new ArrayList<>();
9+
for (int j = 0; j < i + 1; j++) {
10+
if (j == 0 || j == i) {
11+
temp.add(1);
12+
} else {
13+
temp.add(ans.get(i - 1).get(j - 1) + ans.get(i - 1).get(j));
14+
}
15+
}
16+
ans.add(temp);
17+
}
18+
return ans;
19+
}
20+
}

0118.pascals-triangle/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# [118. Pascal's Triangle](https://leetcode.com/problems/pascals-triangle/)
2+

0120.triangle/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# [120. Triangle](https://leetcode.com/problems/triangle/)
2+

0120.triangle/Triangle.java

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
import java.util.Arrays;
2+
import java.util.List;
3+
4+
class Triangle {
5+
public int minimumTotal(List<List<Integer>> triangle) {
6+
int[] dp = new int[triangle.size()];
7+
dp[0] = triangle.get(0).get(0);
8+
for (int i = 1; i < triangle.size(); i++) {
9+
int[] mem = dp.clone();
10+
for (int j = 0; j < triangle.get(i).size(); j++) {
11+
if (j == 0) {
12+
dp[j] = triangle.get(i).get(j) + mem[j];
13+
} else if (j == triangle.get(i).size() - 1) {
14+
dp[j] = triangle.get(i).get(j) + mem[j - 1];
15+
} else {
16+
dp[j] = triangle.get(i).get(j) + Math.min(mem[j], mem[j - 1]);
17+
}
18+
}
19+
}
20+
21+
int res = Integer.MAX_VALUE;
22+
for (int num : dp) {
23+
res = Math.min(res, num);
24+
}
25+
return res;
26+
}
27+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
class BestTimeToBuyAndSellStock {
2+
public int maxProfit(int[] prices) {
3+
int minPrice = Integer.MAX_VALUE, maxProfit = 0;
4+
for (int i = 0; i < prices.length; i++) {
5+
if (prices[i] < minPrice)
6+
minPrice = prices[i];
7+
else if (prices[i] - minPrice > maxProfit)
8+
maxProfit = prices[i] - minPrice;
9+
}
10+
return maxProfit;
11+
}
12+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# [121. Best Time to Buy and Sell Stock](https://leetcode.com/problems/best-time-to-buy-and-sell-stock/)
2+
3+
4+
Complexity Analysis:
5+
6+
- Time Complexity: $O(n)$. $n$ is the length of prices.
7+
- Space Complexity: $O(1)$. We only use extra space for variables.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
class BestTimeToBuyAndSellStockIi {
2+
public int maxProfit(int[] prices) {
3+
int profit = 0;
4+
for (int i = 1; i < prices.length; i++) {
5+
if (prices[i] > prices[i - 1]) {
6+
profit += prices[i] - prices[i - 1] ;
7+
}
8+
}
9+
return profit;
10+
}
11+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# [122. Best Time to Buy and Sell Stock II](https://leetcode.com/problems/best-time-to-buy-and-sell-stock-ii/)
2+

0126.word-ladder-ii/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [126. Word Ladder II](https://leetcode.com/problems/word-ladder-ii/)

0126.word-ladder-ii/WordLadderIi.java

+81
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
import java.util.*;
2+
3+
class WordLadderIi {
4+
private void bfs(Set<String> startSet, Set<String> endSet, Map<String, List<String>> map, Set<String> dict, boolean reverse) {
5+
if (startSet.size() == 0) return;
6+
if (startSet.size() > endSet.size()) {
7+
bfs(endSet, startSet, map, dict, !reverse);
8+
return;
9+
}
10+
11+
Set<String> tmp = new HashSet<>();
12+
boolean finish = false;
13+
dict.removeAll(startSet);
14+
15+
for (String s : startSet) {
16+
char[] chs = s.toCharArray();
17+
for (int i = 0; i < chs.length; i++) {
18+
char old = chs[i];
19+
for (char c = 'a'; c <= 'z'; c++) {
20+
chs[i] = c;
21+
String word = new String(chs);
22+
23+
if (dict.contains(word)) {
24+
if (endSet.contains(word)) {
25+
finish = true;
26+
} else {
27+
tmp.add(word);
28+
}
29+
30+
String key = reverse ? word : s;
31+
String val = reverse ? s : word;
32+
33+
if (map.get(key) == null) {
34+
map.put(key, new ArrayList<>());
35+
}
36+
37+
map.get(key).add(val);
38+
}
39+
}
40+
chs[i] = old;
41+
}
42+
}
43+
44+
if (!finish) {
45+
bfs(tmp, endSet, map, dict, reverse);
46+
}
47+
}
48+
49+
private void dfs(List<List<String>> res, List<String> list, String endWord, String word, Map<String, List<String>> map) {
50+
if (word.equals(endWord)) {
51+
res.add(new ArrayList<>(list));
52+
return;
53+
}
54+
55+
if (map.get(word) == null) return;
56+
for (String next : map.get(word)) {
57+
list.add(next);
58+
dfs(res, list, endWord, next, map);
59+
list.remove(list.size() - 1);
60+
}
61+
}
62+
63+
public List<List<String>> findLadders(String beginWord, String endWord, List<String> wordList) {
64+
List<List<String>> res = new ArrayList<>();
65+
Set<String> dict = new HashSet<>(wordList);
66+
if (!dict.contains(endWord)) return res;
67+
68+
Map<String, List<String>> map = new HashMap<>();
69+
Set<String> startSet = new HashSet<>();
70+
Set<String> endSet = new HashSet<>();
71+
startSet.add(beginWord);
72+
endSet.add(endWord);
73+
bfs(startSet, endSet, map, dict, false);
74+
75+
List<String> list = new ArrayList<>();
76+
list.add(beginWord);
77+
dfs(res, list, endWord, beginWord, map);
78+
79+
return res;
80+
}
81+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
import java.util.HashMap;
2+
import java.util.Map;
3+
4+
class LongestConsecutiveSequence {
5+
private int forward(Map<Integer, Integer> countForNum, int num) {
6+
if (!countForNum.containsKey(num)) {
7+
return 0;
8+
}
9+
int cnt = countForNum.get(num);
10+
if (cnt > 1) {
11+
return cnt;
12+
}
13+
cnt = forward(countForNum, num + 1) + 1;
14+
countForNum.put(num, cnt);
15+
return cnt;
16+
}
17+
18+
private int maxCount(Map<Integer, Integer> countForNum) {
19+
int max = 0;
20+
for (int num : countForNum.keySet()) {
21+
max = Math.max(max, countForNum.get(num));
22+
}
23+
return max;
24+
}
25+
26+
public int longestConsecutive(int[] nums) {
27+
Map<Integer, Integer> countForNum = new HashMap<>();
28+
for (int num : nums) {
29+
countForNum.put(num, 1);
30+
}
31+
for (int num : nums) {
32+
forward(countForNum, num);
33+
}
34+
return maxCount(countForNum);
35+
}
36+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [128. Longest Consecutive Sequence](https://leetcode.com/problems/longest-consecutive-sequence/)
+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# [129. Sum Root to Leaf Numbers](https://leetcode.com/problems/sum-root-to-leaf-numbers/)
2+
3+
4+
Complexity Analysis:
5+
6+
- Time Complexity: $O(n)$. $n$ is the amount of nodes in the tree.
7+
- Space Complexity: $O(n)$. Recursion is using stack and the space complexity is $O(n)$.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
/**
2+
* Definition for a binary tree node.
3+
* public class TreeNode {
4+
* int val;
5+
* TreeNode left;
6+
* TreeNode right;
7+
* TreeNode() {}
8+
* TreeNode(int val) { this.val = val; }
9+
* TreeNode(int val, TreeNode left, TreeNode right) {
10+
* this.val = val;
11+
* this.left = left;
12+
* this.right = right;
13+
* }
14+
* }
15+
*/
16+
class SumRootToLeafNumbers {
17+
private int sum = 0;
18+
19+
public int sumNumbers(TreeNode root) {
20+
dfs(root, 0);
21+
return sum;
22+
}
23+
24+
private void dfs(TreeNode root, int currSum) {
25+
int tempSum = currSum * 10 + root.val;
26+
if (root.left == null && root.right == null) {
27+
sum += tempSum;
28+
return;
29+
}
30+
if (root.left != null) {
31+
dfs(root.left, tempSum);
32+
}
33+
if (root.right != null) {
34+
dfs(root.right, tempSum);
35+
}
36+
}
37+
}

0130.surrounded-regions/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# [130. Surrounded Regions](https://leetcode.com/problems/surrounded-regions/)
2+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
class SurroundedRegions {
2+
private void DFS(char[][] board, int row, int col) {
3+
if (row < 0 || row > board.length - 1 || col < 0 || col > board[0].length) return;
4+
if (board[row][col] == 'O') board[row][col] = '*';
5+
if (row > 1 && board[row - 1][col] == 'O') DFS(board, row - 1, col);
6+
if (row < board.length - 2 && board[row + 1][col] == 'O') DFS(board, row + 1, col);
7+
if (col > 1 && board[row][col - 1] == 'O') DFS(board, row, col - 1);
8+
if (col < board[row].length - 2 && board[row][col + 1] == 'O') DFS(board, row, col + 1);
9+
}
10+
11+
public void solve(char[][] board) {
12+
if (board.length < 2 || board[0].length < 2) return;
13+
int m = board.length, n = board[0].length;
14+
for (int i = 0; i < m; i++) {
15+
if (board[i][0] == 'O') DFS(board, i, 0);
16+
if (board[i][n - 1] == 'O') DFS(board, i, n - 1);
17+
}
18+
for (int j = 0; j < n; j++) {
19+
if (board[0][j] == 'O') DFS(board, 0, j);
20+
if (board[m - 1][j] == 'O') DFS(board, m - 1, j);
21+
}
22+
for (int i = 0; i < m; i++) {
23+
for (int j = 0; j < n; j++) {
24+
if (board[i][j] == 'O') board[i][j] = 'X';
25+
else if (board[i][j] == '*') board[i][j] = 'O';
26+
}
27+
}
28+
}
29+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
import java.util.ArrayList;
2+
import java.util.Arrays;
3+
import java.util.List;
4+
5+
class PalindromePartitioning {
6+
boolean[][] f;
7+
List<List<String>> ans = new ArrayList<>();
8+
List<String> temp = new ArrayList<>();
9+
int n;
10+
11+
public List<List<String>> partition(String s) {
12+
n = s.length();
13+
f = new boolean[n][n];
14+
for (int i = 0; i < n; i++)
15+
Arrays.fill(f[i], true);
16+
for (int i = n - 1; i >= 0; i--) {
17+
for (int j = i + 1; j < n; j++) {
18+
f[i][j] = (s.charAt(i) == s.charAt(j)) && f[i + 1][j - 1];
19+
}
20+
}
21+
22+
dfs(s, 0);
23+
return ans;
24+
}
25+
26+
private void dfs(String s, int i) {
27+
if (i == n) {
28+
ans.add(new ArrayList<>(temp));
29+
return;
30+
}
31+
for (int j = i; j < n; j++) {
32+
if (f[i][j]) {
33+
temp.add(s.substring(i, j + 1));
34+
dfs(s, j + 1);
35+
temp.remove(temp.size() - 1);
36+
}
37+
}
38+
}
39+
}
+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# [131. Palindrome Partitioning](https://leetcode.com/problems/palindrome-partitioning/)
2+
3+
4+
Complexity Analysis:
5+
6+
- Time Complexity: $O(n\times2^n)$. $n$ is the length of s. In the worst case, s has completely same characters in $n$ length , and the time complexity is $O(n\times2^n)$.
7+
- Space Complexity: $O(n^2)$. We use $O(n^2)$ for array f and use $O(n)$ in backtracking. The total space complexity is $O(n^2)$.

0134.gas-station/GasStation.java

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
class GasStation {
2+
public int canCompleteCircuit(int[] gas, int[] cost) {
3+
int n = gas.length, i = 0;
4+
while (i < n) {
5+
int sumOfGas = 0, sumOfCost = 0, cnt = 0;
6+
while (cnt < n) {
7+
int j = (i + cnt) % n;
8+
sumOfGas += gas[j];
9+
sumOfCost += cost[j];
10+
if (sumOfCost > sumOfGas)
11+
break;
12+
cnt++;
13+
}
14+
if (cnt == n)
15+
return i;
16+
else
17+
i = i + cnt + 1;
18+
}
19+
return -1;
20+
}
21+
}

0134.gas-station/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [134. Gas Station](https://leetcode.com/problems/gas-station/)

0 commit comments

Comments
 (0)