LeetCode 131. 分割回文串(Palindrome Partitioning)
Posted hglibin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 131. 分割回文串(Palindrome Partitioning)相关的知识,希望对你有一定的参考价值。
131. 分割回文串
131. Palindrome Partitioning
题目描述
给定一个字符串 s,将 s 分割成一些子串,使每个子串都是回文串。
返回 s 所有可能的分割方案。
LeetCode131. Palindrome Partitioning中等
示例:
输入: "aab"
输出:
[
??["aa","b"],
??["a","a","b"]
]
输出:
[
??["aa","b"],
??["a","a","b"]
]
Java 实现
略
相似题目
参考资料
- https://leetcode.com/problems/palindrome-partitioning/
- https://leetcode-cn.com/problems/palindrome-partitioning/
以上是关于LeetCode 131. 分割回文串(Palindrome Partitioning)的主要内容,如果未能解决你的问题,请参考以下文章