Skip to content

Commit e1d19ea

Browse files
committed
feat: add python and java solutions to leetcode problem: No.0409
1 parent fe38bc4 commit e1d19ea

File tree

4 files changed

+69
-4
lines changed

4 files changed

+69
-4
lines changed

solution/0400-0499/0409.Longest Palindrome/README.md

+23-2
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,36 @@
3636
<!-- 这里可写当前语言的特殊实现逻辑 -->
3737

3838
```python
39-
39+
class Solution:
40+
def longestPalindrome(self, s: str) -> int:
41+
res = [0] * 128
42+
for ch in s:
43+
res[ord(ch)] += 1
44+
odd_cnt, n = 0, len(s)
45+
for e in res:
46+
odd_cnt += (e % 2)
47+
return n if odd_cnt == 0 else n - odd_cnt + 1
4048
```
4149

4250
### **Java**
4351

4452
<!-- 这里可写当前语言的特殊实现逻辑 -->
4553

4654
```java
47-
55+
class Solution {
56+
public int longestPalindrome(String s) {
57+
int[] res = new int[128];
58+
int n = s.length();
59+
for (int i = 0; i < n; ++i) {
60+
res[s.charAt(i)]++;
61+
}
62+
int oddCnt = 0;
63+
for (int e : res) {
64+
oddCnt += (e % 2);
65+
}
66+
return oddCnt == 0 ? n : n - oddCnt + 1;
67+
}
68+
}
4869
```
4970

5071
### **...**

solution/0400-0499/0409.Longest Palindrome/README_EN.md

+23-2
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,34 @@ One longest palindrome that can be built is "dccaccd", whose length is 7.
4545
### **Python3**
4646

4747
```python
48-
48+
class Solution:
49+
def longestPalindrome(self, s: str) -> int:
50+
res = [0] * 128
51+
for ch in s:
52+
res[ord(ch)] += 1
53+
odd_cnt, n = 0, len(s)
54+
for e in res:
55+
odd_cnt += (e % 2)
56+
return n if odd_cnt == 0 else n - odd_cnt + 1
4957
```
5058

5159
### **Java**
5260

5361
```java
54-
62+
class Solution {
63+
public int longestPalindrome(String s) {
64+
int[] res = new int[128];
65+
int n = s.length();
66+
for (int i = 0; i < n; ++i) {
67+
res[s.charAt(i)]++;
68+
}
69+
int oddCnt = 0;
70+
for (int e : res) {
71+
oddCnt += (e % 2);
72+
}
73+
return oddCnt == 0 ? n : n - oddCnt + 1;
74+
}
75+
}
5576
```
5677

5778
### **...**
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
class Solution {
2+
public int longestPalindrome(String s) {
3+
int[] res = new int[128];
4+
int n = s.length();
5+
for (int i = 0; i < n; ++i) {
6+
res[s.charAt(i)]++;
7+
}
8+
int oddCnt = 0;
9+
for (int e : res) {
10+
oddCnt += (e % 2);
11+
}
12+
return oddCnt == 0 ? n : n - oddCnt + 1;
13+
}
14+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
class Solution:
2+
def longestPalindrome(self, s: str) -> int:
3+
res = [0] * 128
4+
for ch in s:
5+
res[ord(ch)] += 1
6+
odd_cnt, n = 0, len(s)
7+
for e in res:
8+
odd_cnt += (e % 2)
9+
return n if odd_cnt == 0 else n - odd_cnt + 1

0 commit comments

Comments
 (0)