mirror of
				https://gitee.com/coder-xiaomo/leetcode-problemset
				synced 2025-11-04 11:43:12 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			774 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			774 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<p>Given a string <code>s</code>, partition <code>s</code> such that every <span data-keyword="substring-nonempty">substring</span> of the partition is a <span data-keyword="palindrome-string"><strong>palindrome</strong></span>. Return <em>all possible palindrome partitioning of </em><code>s</code>.</p>
 | 
						|
 | 
						|
<p> </p>
 | 
						|
<p><strong class="example">Example 1:</strong></p>
 | 
						|
<pre><strong>Input:</strong> s = "aab"
 | 
						|
<strong>Output:</strong> [["a","a","b"],["aa","b"]]
 | 
						|
</pre><p><strong class="example">Example 2:</strong></p>
 | 
						|
<pre><strong>Input:</strong> s = "a"
 | 
						|
<strong>Output:</strong> [["a"]]
 | 
						|
</pre>
 | 
						|
<p> </p>
 | 
						|
<p><strong>Constraints:</strong></p>
 | 
						|
 | 
						|
<ul>
 | 
						|
	<li><code>1 <= s.length <= 16</code></li>
 | 
						|
	<li><code>s</code> contains only lowercase English letters.</li>
 | 
						|
</ul>
 |