1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-19 17:56:55 +02:00
LeetCode/rs/find-first-palindromic-string-in-the-array.rs

15 lines
374 B
Rust
Raw Normal View History

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(""))
}
}