Skip to content

Commit b87b97b

Browse files
committed
Solution is Added By anjha
1 parent cf35544 commit b87b97b

File tree

38 files changed

+567
-0
lines changed

38 files changed

+567
-0
lines changed

0042.trapping-rain-water/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [42. Trapping Rain Water](https://leetcode.com/problems/trapping-rain-water/)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
class TrappingRainWater {
2+
public int trap(int[] height) {
3+
int left = 0, right = height.length - 1;
4+
int res = 0;
5+
int left_max = 0, right_max = 0;
6+
while (left < right) {
7+
if (height[left] < height[right]) {
8+
if (height[left] >= left_max) {
9+
left_max = height[left];
10+
} else {
11+
res += (left_max - height[left]);
12+
}
13+
left++;
14+
} else {
15+
if (height[right] >= right_max) {
16+
right_max = height[right];
17+
} else {
18+
res += (right_max - height[right]);
19+
}
20+
right--;
21+
}
22+
}
23+
return res;
24+
}
25+
}
+69
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
import java.util.ArrayList;
2+
3+
class MultiplyStrings {
4+
private ArrayList<Integer> addStrings(ArrayList<Integer> num1, ArrayList<Integer> num2) {
5+
ArrayList<Integer> res = new ArrayList<>();
6+
int carry = 0;
7+
8+
for (int i = 0; i < num1.size() || i < num2.size(); i++) {
9+
int digit1 = i < num1.size() ? num1.get(i) : 0;
10+
int digit2 = i < num2.size() ? num2.get(i) : 0;
11+
12+
int sum = digit1 + digit2 + carry;
13+
carry = sum / 10;
14+
res.add(sum % 10);
15+
}
16+
17+
if (carry != 0) {
18+
res.add(carry);
19+
}
20+
return res;
21+
}
22+
23+
private ArrayList<Integer> multiplyOneDigit(StringBuilder firstNumber, char secondNumberDigit, int numZeros) {
24+
ArrayList<Integer> currentResult = new ArrayList<>();
25+
for (int i = 0; i < numZeros; i++) currentResult.add(0);
26+
27+
int carry = 0;
28+
for (int i = 0; i < firstNumber.length(); i++) {
29+
char firstNumberDigit = firstNumber.charAt(i);
30+
int multiplication = (secondNumberDigit - '0') * (firstNumberDigit - '0') + carry;
31+
carry = multiplication / 10;
32+
currentResult.add(multiplication % 10);
33+
}
34+
35+
if (carry != 0) {
36+
currentResult.add(carry);
37+
}
38+
return currentResult;
39+
}
40+
41+
public String multiply(String num1, String num2) {
42+
if (num1.equals("0") || num2.equals("0")) return "0";
43+
44+
StringBuilder firstNumber = new StringBuilder(num1);
45+
StringBuilder secondNumber = new StringBuilder(num2);
46+
47+
firstNumber.reverse();
48+
secondNumber.reverse();
49+
50+
int n = firstNumber.length() + secondNumber.length();
51+
ArrayList<Integer> res = new ArrayList<>();
52+
for (int i = 0; i < n; i++) res.add(0);
53+
54+
for (int i = 0; i < secondNumber.length(); i++) {
55+
res = addStrings(multiplyOneDigit(firstNumber, secondNumber.charAt(i), i), res);
56+
}
57+
58+
if (res.get(res.size() - 1) == 0) {
59+
res.remove(res.size() - 1);
60+
}
61+
62+
StringBuilder result = new StringBuilder();
63+
for (int i = res.size() - 1; i >= 0; i--) {
64+
result.append(res.get(i));
65+
}
66+
67+
return result.toString();
68+
}
69+
}

0043.multiply-strings/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [43. Multiply Strings](https://leetcode.com/problems/multiply-strings/)

0045.jump-game-ii/JumpGameIi.java

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
class JumpGameIi {
2+
public int jump(int[] nums) {
3+
int n = nums.length;
4+
int maxPosition = 0, end = 0, steps = 0;
5+
for (int i = 0; i < n - 1; i++) {
6+
maxPosition = Math.max(maxPosition, i + nums[i]);
7+
if (i == end) {
8+
end = maxPosition;
9+
steps++;
10+
}
11+
}
12+
return steps;
13+
}
14+
}

0045.jump-game-ii/README.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# [45. Jump Game II](https://leetcode.com/problems/jump-game-ii/)
2+
3+
4+
Complexity Analysis:
5+
6+
- Time Complexity: $O(n)$. $n$ is the length of `nums`.
7+
- Space Complexity: $O(1)$.

0046.permutations/Permutations.java

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
import java.util.ArrayList;
2+
import java.util.List;
3+
4+
class Permutations {
5+
private void backtrack(List<List<Integer>> lists, List<Integer> list, int[] nums) {
6+
if (list.size() == nums.length) {
7+
lists.add(new ArrayList<>(list));
8+
} else {
9+
for (int num : nums) {
10+
if (list.contains(num)) continue;
11+
list.add(num);
12+
backtrack(lists, list, nums);
13+
list.remove(list.size() - 1);
14+
}
15+
}
16+
}
17+
18+
public List<List<Integer>> permute(int[] nums) {
19+
List<List<Integer>> res = new ArrayList<>();
20+
backtrack(res, new ArrayList<>(), nums);
21+
return res;
22+
}
23+
}

0046.permutations/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [46. Permutations](https://leetcode.com/problems/permutations/)
+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
import java.util.*;
2+
3+
class PermutationsIi {
4+
private void backtrack(LinkedList<Integer> comb, int n, HashMap<Integer, Integer> counter, List<List<Integer>> res) {
5+
if (comb.size() == n) {
6+
res.add(new ArrayList<>(comb));
7+
return;
8+
}
9+
for (Map.Entry<Integer, Integer> entry : counter.entrySet()) {
10+
int num = entry.getKey();
11+
int count = entry.getValue();
12+
if (count == 0) continue;
13+
comb.addLast(num);
14+
counter.put(num, count - 1);
15+
backtrack(comb, n, counter, res);
16+
comb.removeLast();
17+
counter.put(num, count);
18+
}
19+
}
20+
21+
public List<List<Integer>> permuteUnique(int[] nums) {
22+
List<List<Integer>> res = new ArrayList<>();
23+
HashMap<Integer, Integer> counter = new HashMap<>();
24+
for (int num : nums) {
25+
counter.put(num, counter.getOrDefault(num, 0) + 1);
26+
}
27+
28+
LinkedList<Integer> comb = new LinkedList<>();
29+
this.backtrack(comb, nums.length, counter, res);
30+
return res;
31+
}
32+
}

0047.permutations-ii/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [47. Permutations II](https://leetcode.com/problems/permutations-ii/)

0048.rotate-image/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [48. Rotate Image](https://leetcode.com/problems/rotate-image/)

0048.rotate-image/RotateImage.java

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
class RotateImage {
2+
public void rotate(int[][] matrix) {
3+
int n = matrix.length;
4+
for (int i = 0; i < (n + 1) / 2; i++) {
5+
for (int j = 0; j < n / 2; j++) {
6+
int temp = matrix[n - 1 - j][i];
7+
matrix[n - 1 - j][i] = matrix[n - 1 - i][n - j - 1];
8+
matrix[n - 1 - i][n - j - 1] = matrix[j][n - 1 -i];
9+
matrix[j][n - 1 -i] = matrix[i][j];
10+
matrix[i][j] = temp;
11+
}
12+
}
13+
}
14+
}
+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import java.util.*;
2+
3+
class GroupAnagrams {
4+
public List<List<String>> groupAnagrams(String[] strs) {
5+
if (strs == null || strs.length == 0) return new ArrayList<>();
6+
Map<String, List<String>> map = new HashMap<>();
7+
for (String s : strs) {
8+
char[] chars = s.toCharArray();
9+
Arrays.sort(chars);
10+
String keyString = String.valueOf(chars);
11+
if (!map.containsKey(keyString)) map.put(keyString, new ArrayList<>());
12+
map.get(keyString).add(s);
13+
}
14+
return new ArrayList<>(map.values());
15+
}
16+
}

0049.group-anagrams/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [49. Group Anagrams](https://leetcode.com/problems/group-anagrams/)
+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
class MaximumSubarray {
2+
public int maxSubArray(int[] nums) {
3+
if (nums == null || nums.length == 0) return 0;
4+
int preSum = nums[0];
5+
int maxSum = preSum;
6+
for (int i = 1; i < nums.length; i++) {
7+
preSum = preSum > 0 ? preSum + nums[i] : nums[i];
8+
maxSum = Math.max(preSum, maxSum);
9+
}
10+
return maxSum;
11+
}
12+
}

0053.maximum-subarray/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [53. Maximum Subarray](https://leetcode.com/problems/maximum-subarray/)

0054.spiral-matrix/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [54. Spiral Matrix](https://leetcode.com/problems/spiral-matrix/)

0054.spiral-matrix/SpiralMatrix.java

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
import java.util.ArrayList;
2+
import java.util.List;
3+
4+
class SpiralMatrix {
5+
public List<Integer> spiralOrder(int[][] matrix) {
6+
List<Integer> res = new ArrayList<>();
7+
if (matrix.length == 0) return res;
8+
9+
int rowBegin = 0;
10+
int rowEnd = matrix.length - 1;
11+
int colBegin = 0;
12+
int colEnd = matrix[0].length - 1;
13+
14+
while (rowBegin <= rowEnd && colBegin <= colEnd) {
15+
// right
16+
for (int j = colBegin; j <= colEnd; j++) {
17+
res.add(matrix[rowBegin][j]);
18+
}
19+
rowBegin++;
20+
21+
// down
22+
for (int j = rowBegin; j <= rowEnd; j++) {
23+
res.add(matrix[j][colEnd]);
24+
}
25+
colEnd--;
26+
27+
// left
28+
if (rowBegin <= rowEnd) {
29+
for (int j = colEnd; j >= colBegin; j--) {
30+
res.add(matrix[rowEnd][j]);
31+
}
32+
}
33+
rowEnd--;
34+
35+
// top
36+
if (colBegin <= colEnd) {
37+
for (int j = rowEnd; j >= rowBegin; j--) {
38+
res.add(matrix[j][colBegin]);
39+
}
40+
}
41+
colBegin++;
42+
}
43+
return res;
44+
}
45+
}

0055.jump-game/JumpGame.java

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
class JumpGame {
2+
public boolean canJump(int[] nums) {
3+
int n = nums.length, rightMost = 0;
4+
for (int i = 0; i < n; i++) {
5+
if (i <= rightMost) {
6+
rightMost = Math.max(rightMost, i + nums[i]);
7+
if (rightMost >= n - 1) return true;
8+
}
9+
}
10+
return false;
11+
}
12+
}

0055.jump-game/README.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# [55. Jump Game](https://leetcode.com/problems/jump-game/)
2+
3+
Complexity Analysis:
4+
5+
- Time Complexity: $O(n)$. $n$ is the length of `nums` array.
6+
- Space Complexity: $O(1)$. Only constant variables.
+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
import java.util.ArrayList;
2+
import java.util.Arrays;
3+
import java.util.Comparator;
4+
import java.util.List;
5+
6+
class MergeIntervals {
7+
public int[][] merge(int[][] intervals) {
8+
if (intervals.length <= 1) return intervals;
9+
Arrays.sort(intervals, Comparator.comparingInt(a -> a[0]));
10+
int start = intervals[0][0];
11+
int end = intervals[0][1];
12+
List<int[]> res = new ArrayList<>();
13+
for (int i = 1; i < intervals.length; i++) {
14+
if (intervals[i][0] > end) {
15+
res.add(new int[]{start, end});
16+
start = intervals[i][0];
17+
}
18+
end = Math.max(end, intervals[i][1]);
19+
if (i == intervals.length - 1) {
20+
res.add(new int[]{start, end});
21+
}
22+
}
23+
return res.toArray(new int[0][]);
24+
}
25+
}

0056.merge-intervals/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [56. Merge Intervals](https://leetcode.com/problems/merge-intervals/)
+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
import java.util.ArrayList;
2+
import java.util.List;
3+
4+
class InsertInterval {
5+
public int[][] insert(int[][] intervals, int[] newInterval) {
6+
List<int[]> ansList = new ArrayList<>();
7+
int i = 0;
8+
9+
// add all the intervals before newInterval starts
10+
while (i < intervals.length && intervals[i][1] < newInterval[0]) {
11+
ansList.add(intervals[i]);
12+
i++;
13+
}
14+
15+
// merge intervals with the insert interval
16+
while (i < intervals.length && intervals[i][0] <= newInterval[1]) {
17+
newInterval[0] = Math.min(newInterval[0], intervals[i][0]);
18+
newInterval[1] = Math.max(newInterval[1], intervals[i][1]);
19+
i++;
20+
}
21+
ansList.add(newInterval);
22+
23+
// add the rest of intervals
24+
while (i < intervals.length) {
25+
ansList.add(intervals[i]);
26+
i++;
27+
}
28+
29+
int[][] ans = new int[ansList.size()][2];
30+
for (int j = 0; j < ansList.size(); j++)
31+
ans[j] = ansList.get(j);
32+
33+
return ans;
34+
}
35+
}

0057.insert-interval/README.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# [57. Insert Interval](https://leetcode.com/problems/insert-interval/)
2+
3+
Complexity Analysis:
4+
5+
- Time Complexity: $O(n)$. $n$ is the length of intervals.
6+
- Space Complexity: $O(1)$. We only use extra space for variables.

0 commit comments

Comments
 (0)