131. Palindrome Partitioning 131.回文分区
Posted immiao0319
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了131. Palindrome Partitioning 131.回文分区相关的知识,希望对你有一定的参考价值。
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: "aab"
Output:
[
["aa","b"],
["a","a","b"]
]
复杂度:
以上是关于131. Palindrome Partitioning 131.回文分区的主要内容,如果未能解决你的问题,请参考以下文章