#2108. Find First Palindromic String in the Array
https://leetcode.com/problems/find-first-palindromic-string-in-the-array/description/?envType=daily-question&envId=2024-02-13
var firstPalindrome = function (words) {
function isPalindrome(word) {
let start = 0, end = word.length - 1
...
karleb.hashnode.dev1 min read