summaryrefslogtreecommitdiff
path: root/find-first-palindromic-string-in-the-array/src
diff options
context:
space:
mode:
Diffstat (limited to 'find-first-palindromic-string-in-the-array/src')
-rw-r--r--find-first-palindromic-string-in-the-array/src/main.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/find-first-palindromic-string-in-the-array/src/main.rs b/find-first-palindromic-string-in-the-array/src/main.rs
new file mode 100644
index 0000000..cf3d386
--- /dev/null
+++ b/find-first-palindromic-string-in-the-array/src/main.rs
@@ -0,0 +1,11 @@
+fn main() {
+ println!("Hello, world!");
+}
+
+struct Solution;
+
+impl Solution {
+ pub fn first_palindrome(words: Vec<String>) -> String {
+ words.iter().find(|&s| s.chars().take(s.len() / 2).eq(s.chars().rev().take(s.len() / 2))).map(|x| x.clone()).unwrap_or(String::new())
+ }
+}