mirror of
https://gitlab.com/mfocko/LeetCode.git
synced 2024-11-09 15:59:06 +01:00
14 lines
374 B
Rust
14 lines
374 B
Rust
impl Solution {
|
|
fn is_palindrome(word: &str) -> bool {
|
|
word.chars()
|
|
.take(word.len() >> 1)
|
|
.eq(word.chars().rev().take(word.len() >> 1))
|
|
}
|
|
|
|
pub fn first_palindrome(words: Vec<String>) -> String {
|
|
words
|
|
.into_iter()
|
|
.find(|s| Self::is_palindrome(s))
|
|
.unwrap_or(String::from(""))
|
|
}
|
|
}
|