pub fn longest_palindrome(s: String) -> String
Expand description

最长回文子串

可能出现同一个字符串有多个最长回文子串的现象 参照 tests/cases_cn/c000_0xx/c000_005.rs 了解测试用例

参数

  • s - 待搜索的原始字符串.
use leetcode_rust::problems_cn::p000_0xx::p000_005::longest_palindrome;
let mut result_value = longest_palindrome(String::from("abbab"));
assert_eq!(result_value, String::from("abba"));