131. 分割回文串 131. Palindrome Partitioning 题目描述 给定一个字符串 s,将 s 分割成一些子串,使每个子串都是回文串。 返回 s 所有可能的分割方案。 LeetCode 131. Palindrome Partitioning 中等 示例
131. 分割回文串
131. Palindrome Partitioning
题目描述
给定一个字符串 s,将 s 分割成一些子串,使每个子串都是回文串。
返回 s 所有可能的分割方案。
LeetCode131. Palindrome Partitioning中等
示例:
输出:
[
??["aa","b"],
??["a","a","b"]
]
Java 实现
略
相似题目
- 132. 分割回文串 II Palindrome Partitioning II
参考资料
- https://leetcode.com/problems/palindrome-partitioning/
- https://leetcode-cn.com/problems/palindrome-partitioning/