Class Solution
java.lang.Object
g0101_0200.s0131_palindrome_partitioning.Solution
public class Solution
extends java.lang.Object
131 - Palindrome Partitioning.
Medium
Given a string s
, partition s
such that every substring of the partition is a palindrome. Return all possible palindrome partitioning of s
.
A palindrome string is a string that reads the same backward as forward.
Example 1:
Input: s = “aab”
Output: [[“a”,“a”,“b”],[“aa”,“b”]]
Example 2:
Input: s = “a”
Output: "a"
Constraints:
1 <= s.length <= 16
s
contains only lowercase English letters.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionjava.util.List
<java.util.List<java.lang.String>> partition
(java.lang.String s) Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
Solution
public Solution()
-
-
Method Details
-
partition
public java.util.List<java.util.List<java.lang.String>> partition(java.lang.String s)
-