2108. Find First Palindromic String in the Array
Given an array of strings
words, return the first palindromic string in the array. If there is no such string, return an empty string"".A string is palindromic if it reads the same forward and backward.
1 | class Solution { |