【python/leectode/M/131】Palindrome Partitioning

題目 基本思路 使用DFS來找出所有符合條件的子串,判斷迴文也是在簡單不過的函數 都是簡單函數的堆積,問題不大 實現代碼 class Solution(object): def partition(self, s): """ :type s: str :rtype: List[List[str]] """ if not s: retu
相關文章
相關標籤/搜索