132-Palindrome Partitioning II

来源:互联网 发布:java axis2 调用wsdl 编辑:程序博客网 时间:2024/06/05 16:07
题目

Given a string s, partition s such that every substring of the partition is a palindrome.

Return the minimum cuts needed for a palindrome partitioning of s.

For example, given s = “aab”,
Return 1 since the palindrome partitioning [“aa”,”b”] could be produced using 1 cut.

分析
实现