Daily challenge for 2025-02-13
44. Longest Palindromic Substring
Write a function solve that finds the longest palindromic substring in a string.
Example:Input: "babd"Output: "bab"
Run this challenge interactively in Python or JavaScript when the app loads.