Skip to content

Commit af2cf23

Browse files
committed
Solution is Added
1 parent b47e0fe commit af2cf23

File tree

16 files changed

+183
-0
lines changed

16 files changed

+183
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
class PalindromeNumber {
2+
public boolean isPalindrome(int x) {
3+
if (x == 0) {
4+
return true;
5+
}
6+
if (x < 0 || x % 10 == 0) {
7+
return false;
8+
}
9+
int right = 0;
10+
while (x > right) {
11+
right = right * 10 + x % 10;
12+
x /= 10;
13+
}
14+
return x == right || x == right / 10;
15+
}
16+
}

0009.palindrome-number/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [9. Palindrome Number](https://leetcode.com/problems/palindrome-number/)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
class ContainerWithMostWater {
2+
public int maxArea(int[] height) {
3+
if (height.length == 0) return 0;
4+
if (height.length == 1) return height[0];
5+
int maxArea = 0, left = 0, right = height.length - 1;
6+
while (left < right) {
7+
int area = Math.min(height[left], height[right]) * (right - left);
8+
maxArea = Math.max(maxArea, area);
9+
if (height[left] > height[right]) right--;
10+
else left++;
11+
}
12+
13+
return maxArea;
14+
}
15+
}
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [11. Container With Most Water](https://leetcode.com/problems/container-with-most-water/)
+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
class IntegerToRoman {
2+
private final static int[] val = {1000, 900, 500, 400, 100, 90, 50, 40, 10, 9, 5, 4, 1};
3+
private final static String[] rom = {"M", "CM", "D", "CD", "C", "XC", "L", "XL", "X", "IX", "V", "IV", "I"};
4+
5+
public String intToRoman(int num) {
6+
StringBuilder res = new StringBuilder();
7+
for (int i = 0; num > 0; i++) {
8+
while (num >= val[i]) {
9+
res.append(rom[i]);
10+
num -= val[i];
11+
}
12+
}
13+
return res.toString();
14+
}
15+
}

0012.integer-to-roman/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [12. Integer to Roman](https://leetcode.com/problems/integer-to-roman/)

0013.roman-to-integer/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [13. Roman to Integer](https://leetcode.com/problems/roman-to-integer/)
+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
class RomanToInteger {
2+
private int getNum(char c) {
3+
switch (c) {
4+
case 'I': return 1;
5+
case 'V': return 5;
6+
case 'X': return 10;
7+
case 'L': return 50;
8+
case 'C': return 100;
9+
case 'D': return 500;
10+
case 'M': return 1000;
11+
}
12+
return 0;
13+
}
14+
15+
public int romanToInt(String s) {
16+
int res = 0;
17+
char[] stringArray = s.toCharArray();
18+
for (int i = 0; i < s.length(); i++) {
19+
if (i + 1 < s.length() && getNum(stringArray[i]) < getNum(stringArray[i + 1])) {
20+
res -= getNum(stringArray[i]);
21+
} else {
22+
res += getNum(stringArray[i]);
23+
}
24+
}
25+
26+
return res;
27+
}
28+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
class LongestCommonPrefix {
2+
public String longestCommonPrefix(String[] strs) {
3+
if (strs.length == 0) return "";
4+
String prefix = strs[0];
5+
for (int i = 1; i < strs.length; i++) {
6+
while (strs[i].indexOf(prefix) != 0) {
7+
prefix = prefix.substring(0, prefix.length() - 1);
8+
if (prefix.isEmpty()) return "";
9+
}
10+
}
11+
return prefix;
12+
}
13+
}

0014.longest-common-prefix/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [14. Longest Common Prefix](https://leetcode.com/problems/longest-common-prefix/)

0015.3sum/README.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# [15. 3Sum](https://leetcode.com/problems/3sum/)
2+
3+
Complexity Analysis:
4+
5+
- Time Complexity: $O(n^2)$. Sort’s time complexity is $O(n\log^n)$ and the iteration with two pointers is $O(n^2)$, so the total time complexity is $O(n^2)$.
6+
- Space Complexity: $O(n)$. $n$ is the length of nums. We use an extra ArrayList with complexity $O(3(n-2))$ to save the answer.

0015.3sum/ThreeSum.java

+39
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 ThreeSum {
6+
public List<List<Integer>> threeSum(int[] nums) {
7+
Arrays.sort(nums);
8+
List<List<Integer>> ans = new ArrayList<>();
9+
int n = nums.length;
10+
11+
// we only want to find three numbers, so we just need to find length - 2 numbers.
12+
for (int first = 0; first < n - 2; first++) {
13+
// remove duplicates
14+
if (first > 0 && nums[first] == nums[first - 1])
15+
continue;
16+
17+
int second = first + 1;
18+
int third = n - 1;
19+
while (second < third) {
20+
int threeSum = nums[first] + nums[second] + nums[third];
21+
if (threeSum < 0)
22+
second++;
23+
else if (threeSum > 0)
24+
third--;
25+
else {
26+
ans.add(Arrays.asList(nums[first], nums[second], nums[third]));
27+
// remove duplicates in two pointers
28+
while (second < third && nums[second] == nums[second + 1])
29+
second++;
30+
while (second < third && nums[third] == nums[third - 1])
31+
third--;
32+
second++;
33+
third--;
34+
}
35+
}
36+
}
37+
return ans;
38+
}
39+
}

0016.3sum-closest/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [16. 3Sum Closest](https://leetcode.com/problems/3sum-closest/)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
import java.util.Arrays;
2+
3+
class ThreeSumClosestClass {
4+
public int threeSumClosest(int[] nums, int target) {
5+
int result = nums[0] + nums[1] + nums[nums.length - 1];
6+
Arrays.sort(nums);
7+
for (int i = 0; i < nums.length; i++) {
8+
int start = i + 1, end = nums.length - 1;
9+
while (start < end) {
10+
int sum = nums[i] + nums[start] + nums[end];
11+
if (sum > target) end--;
12+
else start++;
13+
if (Math.abs(sum - target) < Math.abs(result - target)) {
14+
result = sum;
15+
}
16+
}
17+
}
18+
return result;
19+
}
20+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
import java.util.ArrayList;
2+
import java.util.HashMap;
3+
import java.util.List;
4+
5+
class LetterCombinationsOfAPhoneNumber {
6+
private void backtrack(List<String> res, char[] digits, String s, String[] dict) {
7+
if (s.length() == digits.length) {
8+
res.add(s);
9+
return;
10+
}
11+
int digit = digits[s.length()] - '0';
12+
for (char letter : dict[digit].toCharArray()) {
13+
backtrack(res, digits, s + Character.toString(letter), dict);
14+
}
15+
}
16+
17+
public List<String> letterCombinations(String digits) {
18+
List<String> res = new ArrayList<>();
19+
if (digits.length() == 0) return res;
20+
String[] dict = new String[]{"", "", "abc", "def", "ghi", "jkl", "mno", "pqrs", "tuv", "wxyz"};
21+
backtrack(res, digits.toCharArray(), "", dict);
22+
return res;
23+
}
24+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [17. Letter Combinations of a Phone Number](https://leetcode.com/problems/letter-combinations-of-a-phone-number/)

0 commit comments

Comments
 (0)