Daily challenge for 2025-11-23
327. Palindrome Partitioning
Given a string s, partition s such that every substring of the partition is a palindrome. Return all possible palindrome partitioning of s.
Example:Input: s = "aab"Output: [["a","a","b"],["aa","b"]]
Example 2:Input: s = "a"Output: [["a"]]
Run this challenge interactively in Python or JavaScript when the app loads.