Skip to content

Latest commit

 

History

History
executable file
·
11 lines (7 loc) · 397 Bytes

File metadata and controls

executable file
·
11 lines (7 loc) · 397 Bytes

题目

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.

解题思路