title | toc | date | tags | top | ||
---|---|---|---|---|---|---|
132. Palindrome Partitioning II |
false |
2017-10-10 |
|
132 |
Given a string
Return the minimum cuts needed for a palindrome partitioning of
Example:
Input: "aab"
Output: 1
Explanation: The palindrome partitioning ["aa","b"] could be produced using 1 cut.