Skip to content

Commit b47e0fe

Browse files
committed
Question Solution Added by Anjha
0 parents  commit b47e0fe

File tree

11 files changed

+122
-0
lines changed

11 files changed

+122
-0
lines changed

0001.two-sum/README.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# [1. Two Sum](https://leetcode.com/problems/two-sum/)
2+
3+
4+
5+
Complexity Analysis:
6+
7+
- Time Complexity: $O(n)$. We use $O(1)$ to find `target - x`.
8+
- Space Complexity: $O(n)$. The main space is used by hash table.

0001.two-sum/TwoSum.java

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
class TwoSum {
2+
public int[] twoSum(int[] nums, int target) {
3+
for (int i = 0; i < nums.length; i++)
4+
for (int j = i + 1; j < nums.length; j++)
5+
if (nums[i] + nums[j] == target)
6+
return new int[]{i, j};
7+
return new int[]{};
8+
}
9+
}

0001.two-sum/TwoSum2.java

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import java.util.HashMap;
2+
import java.util.Map;
3+
4+
class TwoSum2 {
5+
public int[] twoSum(int[] nums, int target) {
6+
Map<Integer, Integer> hashtable = new HashMap<>();
7+
for (int i = 0; i < nums.length; i++) {
8+
if (hashtable.containsKey(target - nums[i]))
9+
return new int[]{hashtable.get(target - nums[i]), i};
10+
hashtable.put(nums[i], i);
11+
}
12+
return new int[]{};
13+
}
14+
}
+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
class AddTwoNumbers {
3+
public ListNode addTwoNumbers(ListNode l1, ListNode l2) {
4+
ListNode dummyHead = new ListNode(0);
5+
ListNode curr = dummyHead;
6+
int carry = 0;
7+
while(l1 != null || l2 != null || carry != 0) {
8+
int val = 0;
9+
if (l1 != null && l2 != null) {
10+
val = l1.val + l2.val;
11+
} else if (l1 != null) {
12+
val = l1.val;
13+
} else if (l2 != null ){
14+
val = l2.val;
15+
}
16+
val += carry;
17+
curr.next = new ListNode((val % 10));
18+
curr = curr.next;
19+
carry = val / 10;
20+
if (l1 != null) l1 = l1.next;
21+
if (l2 != null) l2 = l2.next;
22+
}
23+
return dummyHead.next;
24+
}
25+
}

0002.add-two-numbers/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [2. Add Two Numbers](https://leetcode.com/problems/add-two-numbers/)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
class LongestSubstringWithoutRepeatingCharacters {
2+
public int lengthOfLongestSubstring(String s) {
3+
int n = s.length(), longest = 0;
4+
int[] nextIndex = new int[128];
5+
6+
for (int r = 0, l = 0; r < n; r++) {
7+
l = Math.max(nextIndex[s.charAt(r)], l);
8+
longest = Math.max(longest, r - l + 1);
9+
nextIndex[s.charAt(r)] = r + 1;
10+
}
11+
12+
return longest;
13+
}
14+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [3. Longest Substring Without Repeating Characters](https://leetcode.com/problems/longest-substring-without-repeating-characters/)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
class LongestPalindromicSubstring {
2+
public String longestPalindrome(String s) {
3+
if (s == null || s.length() == 0) return "";
4+
int len = s.length();
5+
boolean[][] dp = new boolean[len][len];
6+
int start = 0, end = 0, max = 0;
7+
for (int i = 0; i < len; i++) {
8+
for (int j = 0; j <= i; j++) {
9+
if (s.charAt(i) == s.charAt(j) && (i - j <= 2 || dp[j + 1][i - 1])) {
10+
dp[j][i] = true;
11+
}
12+
if (dp[j][i] && max < i - j + 1) {
13+
max = i - j + 1;
14+
start = j;
15+
end = i;
16+
}
17+
}
18+
}
19+
return s.substring(start, end + 1);
20+
}
21+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [5. Longest Palindromic Substring](https://leetcode.com/problems/longest-palindromic-substring/)

0006.zigzag-conversion/README.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# [6. Zigzag Conversion](https://leetcode.com/problems/zigzag-conversion/)
2+
3+
4+
Complexity Analysis:
5+
6+
- Time Complexity: $O(n)$. $n$ is the length of `s`. We iterate s for one time, so the time complexity is $O(n)$.
7+
- Space Complexity: $O(n)$. We save the data in rows that maximum space is $O(n)$.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
import java.util.ArrayList;
2+
import java.util.List;
3+
4+
class ZigzagConversion {
5+
public String convert(String s, int numRows) {
6+
if (numRows < 2) return s;
7+
List<StringBuilder> rows = new ArrayList<>();
8+
for (int i = 0; i < numRows; i++)
9+
rows.add(new StringBuilder());
10+
int i = 0, flag = -1;
11+
for (char c : s.toCharArray()) {
12+
rows.get(i).append(c);
13+
if (i == 0 || i == numRows - 1) flag = -flag;
14+
i += flag;
15+
}
16+
StringBuilder res = new StringBuilder();
17+
for (StringBuilder row : rows)
18+
res.append(row);
19+
return res.toString();
20+
}
21+
}

0 commit comments

Comments
 (0)