Skip to content

Commit 4a0c359

Browse files
committed
solve problem aylei#5
1 parent 8283453 commit 4a0c359

5 files changed

+93
-9
lines changed

src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ mod n0001_two_sum;
22
mod n0002_add_two_numbers;
33
mod n0003_longest_substring;
44
mod n0004_median_of_two_sorted_arrays;
5+
mod n0005_longest_palindromic_substring;

src/main.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,8 @@ fn build_desc(content: &str) -> String {
6969
.replace("</b>", "")
7070
.replace("</pre>", "")
7171
.replace("<pre>", "")
72-
.replace("&nbsp;", "")
72+
.replace("&nbsp;", " ")
73+
.replace("&quot;", "\"")
7374
.replace("\n\n", "\n")
7475
.replace("\n", "\n * ")
7576
}

src/n0003_longest_substring.rs

+16-6
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,7 @@
11
/**
22
* [3] Longest Substring Without Repeating Characters
33
*
4-
* You are given two non-empty linked lists representing two non-negative
5-
* integers. The digits are stored in reverse order and each of their nodes
6-
* contain a single digit. Add the two numbers and return it as a linked list.
7-
*
8-
* You may assume the two numbers do not contain any leading zero, except the
9-
* number 0 itself.
4+
* Given a string, find the length of the longest substring without repeating characters.
105
*
116
* Example:
127
*
@@ -21,7 +16,22 @@ pub struct Solution {}
2116

2217
impl Solution {
2318
pub fn length_of_longest_substring(s: String) -> i32 {
19+
let seq: Vec<char> = s.chars().collect();
20+
let len = seq.len();
21+
let (mut start, mut end, mut max) = (0, 0, 0);
2422

23+
while end < len {
24+
for idx in start..end {
25+
if seq[end] == seq[idx] {
26+
start = idx + 1;
27+
break
28+
}
29+
}
30+
let curr = end - start + 1;
31+
if curr > max { max = curr }
32+
end += 1
33+
}
34+
max as i32
2535
}
2636
}
2737

src/n0004_median_of_two_sorted_arrays.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*
66
* Find the median of the two sorted arrays. The overall run time complexity should be O(log (m+n)).
77
*
8-
* You may assume nums1 and nums2cannot be both empty.
8+
* You may assume nums1 and nums2 cannot be both empty.
99
*
1010
* Example 1:
1111
*
@@ -32,7 +32,7 @@ pub struct Solution {}
3232

3333
impl Solution {
3434
pub fn find_median_sorted_arrays(nums1: Vec<i32>, nums2: Vec<i32>) -> f64 {
35-
35+
1.0
3636
}
3737
}
3838

@@ -44,5 +44,7 @@ mod tests {
4444

4545
#[test]
4646
fn test_4() {
47+
assert_eq!(Solution::find_median_sorted_arrays(vec![1, 3], vec![2]), 2.0);
48+
assert_eq!(Solution::find_median_sorted_arrays(vec![1, 2], vec![3, 4]), 2.5);
4749
}
4850
}
+70
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
/**
2+
* [5] Longest Palindromic Substring
3+
*
4+
* Given a string s, find the longest palindromic substring in s. You may assume that the maximum length of s is 1000.
5+
*
6+
* Example 1:
7+
*
8+
*
9+
* Input: "babad"
10+
* Output: "bab"
11+
* Note: "aba" is also a valid answer.
12+
*
13+
*
14+
* Example 2:
15+
*
16+
*
17+
* Input: "cbbd"
18+
* Output: "bb"
19+
*
20+
*
21+
*/
22+
pub struct Solution {}
23+
24+
// submission codes start here
25+
26+
impl Solution {
27+
pub fn longest_palindrome(s: String) -> String {
28+
let seq: Vec<char> = s.chars().collect();
29+
let len = seq.len();
30+
if len < 1 {return s}
31+
let (mut idx, mut curr_len, mut curr_start, mut curr_end) = (0, 0, 0, 0);
32+
while idx < len {
33+
let (mut i, mut j) = (idx, idx);
34+
let ch = seq[idx];
35+
// handle same char
36+
while i > 0 && seq[i - 1] == ch { i -= 1 };
37+
while j < len - 1 && seq[j + 1] == ch { j += 1 };
38+
idx = j + 1;
39+
while i > 0 && j < len - 1 && seq[i - 1] == seq[j + 1] {
40+
i -= 1; j +=1;
41+
}
42+
let max_len = j - i + 1;
43+
if max_len > curr_len {
44+
curr_len = max_len; curr_start = i; curr_end = j;
45+
}
46+
if max_len >= len - 1 {
47+
break;
48+
}
49+
}
50+
51+
s[curr_start..curr_end+1].to_owned()
52+
}
53+
}
54+
55+
// submission codes end
56+
57+
#[cfg(test)]
58+
mod tests {
59+
use super::*;
60+
61+
#[test]
62+
fn test_5() {
63+
assert_eq!(Solution::longest_palindrome("aaaaa".to_owned()), "aaaaa");
64+
assert_eq!(Solution::longest_palindrome("babab".to_owned()), "babab");
65+
assert_eq!(Solution::longest_palindrome("babcd".to_owned()), "bab");
66+
assert_eq!(Solution::longest_palindrome("cbbd".to_owned()), "bb");
67+
assert_eq!(Solution::longest_palindrome("bb".to_owned()), "bb");
68+
assert_eq!(Solution::longest_palindrome("".to_owned()), "");
69+
}
70+
}

0 commit comments

Comments
 (0)